我試圖用其它成分(App.vue)一VUE成分(Global.vue),但使用VUE組件
無法裝載組件:模板或呈現功能不定義爲
錯誤。
Global.vue:
<template>
<div class="global-view">
<p>Global </p>
</div>
</template>
<script>
export default {
name: 'global'
}
</script>
App.vue:
<template>
<div id="app">
<global></global>
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'app'
}
</script>
main.js:
import Vue from 'vue'
import App from './App'
import router from './router'
Vue.component('global', require('./components/Global'))
Vue.config.productionTip = false
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App }
})
看到這個https://github.com/sagalbot/vue-select/issues/127 - 也許是要求聲明會產生問題,Johnathan建議使用import來代替。 –
@RichardMatsen是啊,進口作品 – ramazan793