サーチ…


前書き

.vueファイルに単一のファイルコンポーネントを作成する方法を記述します。

特に設計上の意思決定を行うことができます。

.vueコンポーネントファイルのサンプル

<template>
  <div class="nice">Component {{title}}</div>
</template>

<script>
export default {
    data() {
        return {
            title: "awesome!"
        };
    }
}
</script>

<style>
.nice {
    background-color: red;
    font-size: 48px;
}
</style>


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow