搜尋

首頁  >  問答  >  主體

javascript - Vue.component的問題,幫忙解答~

Vue.component(name,obj);
我看vue官網上市這樣寫的
Vue.component('my-component', {
template: '<p>A custom component !</p>'
})
註冊一個全域的模板,<my-component><my-component>

能不能不直接在template寫程式碼,
而是引用寫好的.vue檔。做my-component的template? ? ?能的話 要怎麼寫? ? ?

给我你的怀抱给我你的怀抱2758 天前658

全部回覆(1)我來回復

  • 漂亮男人

    漂亮男人2017-05-31 10:43:32

    1.官網上的程式碼使用於前端非工程化開發中,比較簡單的模式

    2.進階的話,也就是使用vue文件,進行編譯咯喲。更多參考vue-cli 產生的 template

    import Hello from "./hello.vue";
    

    hello.vue

    <template>
    <p></p>
    </template>
    <script></script>

    回覆
    0
  • 取消回覆