Недавно начал изучать Vue.js , плюс ко всему скачал
готовую сборку , основной компонент у меня в приложении это App.vue:
<template>
<div class="page">
<PageHeader></PageHeader>
</div>
</template>
<script>
export default {
name: 'page'
}
</script>
<style lang="sass">
</style>
Как понятно , в него хочу добавить компонент header.vue:
<template>
<header class="header">
<div class="wrapper">
<div class="header-container">
</div>
</div>
</header>
</template>
<script>
export default {
name: 'header'
}
</script>
<style lang="css">
</style>
PageHeader я зарегистрировал в main.js:
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './page'
import router from './router'
Vue.config.productionTip = false
/* eslint-disable no-new */
Vue.component('PageHeader',{
template: '.header'
});
new Vue({
el: '.page',
router,
template: '<App/>',
components: { App }
})
Что я делаю не так и почему компонент не добавляется?