LoginSignup
0
0

Vue 基礎勉強 コンポーネント

Posted at

(Vue.js 3.1.5を使用)

コンポーネントの例

ボタンとテキストボックスを表示するコンポーネント
sample-componentを作成する。

javascript
const app = Vue.createApp({
    data: () => ({
    })
})
app.component('sample-component', {
    template: '<p><button>Button</button><input type="text"/></p>'
})
app.mount('#app')

template:には、UIの見た目を記述できる。

html
    <div id="app">
        <sample-component></sample-component>
    </div>

11.PNG

コンポーネントは、何度も再利用可能。

htmlに4回記述すれば、4つ表示される。

html
    <div id="app">
        <sample-component></sample-component>
        <sample-component></sample-component>
        <sample-component></sample-component>
        <sample-component></sample-component>
    </div>

12.PNG

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0