最終更新:2018-03-26 (月) 11:00:13 (2226d)  

Vue.component
Top / Vue.component

引数

  • Vue.component.props?
  • Vue.component.template?

props

  • Vue.component('child', {
      // プロパティを宣言します。
      props: ['message'],
      // 単なるデータのように、プロパティは内部テンプレートで使用することができ、
      // そして this.messageとして、vm の中で利用可能になります。
      template: '<span>{{ message }}</span>'
    })
  • <child message="hello!"></child>