vue import組件的使用
1新建/src/
component/
firstcomponent.vue
<template><div id="firstcomponent"><h1>I am a title.</h1></div> </template>
2在app.vue引入組件 并且注冊
<script> import firstcomponent from './component/firstcomponent.vue'
export default {
components: { firstcomponent } }
</script>
3 在app.vue的在<template></template>
內加上<firstcomponent></firstcomponent>
<template><div id="app"><firstcomponent></firstcomponent></div> </template>
?
posted on 2017-02-14 01:55 木子煒培先生 閱讀(...) 評論(...) 編輯 收藏