Vue.component(name,obj);
我看vue官網上市這樣寫的
Vue.component('my-component', {
template: '<p>A custom component !</p>'
})
註冊一個全域的模板,<my-component><my-component>
能不能不直接在template寫程式碼,
而是引用寫好的.vue檔。做my-component的template? ? ?能的話 要怎麼寫? ? ?
漂亮男人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>