鍍金池/ 問(wèn)答/HTML/ vue渲染函數(shù)如何在單頁(yè)面SPA中使用?

vue渲染函數(shù)如何在單頁(yè)面SPA中使用?

Vue.component('anchored-heading', {
  template: '#anchored-heading-template',
  props: {
    level: {
      type: Number,
      required: true
    }
  }
})

vue需要額外導(dǎo)入啊???



回答
編輯回答
鹿惑

你這是在這個(gè)頁(yè)面,應(yīng)該是一個(gè)Vue文件當(dāng)中,去創(chuàng)建一個(gè)組件,vue你要引用,不然調(diào)用不了Vue.component
一般組件都是寫(xiě)成vue文件,然后導(dǎo)入,在父組件中聲明,SPA應(yīng)用中很少用你這種方法。

2017年5月21日 02:56