用vue-cli工具產生的main.js中
import Vue from 'vue'
import App from './App'
import router from './router'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App }
})
【template: '<App/>'】這句話是什麼意思?
是指使用app.vue模板嗎?但在vue沒有看到這樣的用法哦!
裡面只有:
1 template:'#xxx' 根據id取得
2 template:'<xx>.....<xx>' 直接使用
請問有沒有相關的文檔解釋呢?謝謝
https://www.mmxiaowu.com/arti...
自己都回答出答案了呀!
第二種 template:'.....', --> 不就是一個元件嗎?
附:import App from './App' App元件是從這裡引入的