关于Vue脚手架写法的问题
Posted jimc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Vue脚手架写法的问题相关的知识,希望对你有一定的参考价值。
问题描述:
main.js
import Vue from ‘vue‘ import App from ‘./App‘ /* eslint-disable no-new */ new Vue({ el: ‘#app‘, components: { App }, template: ‘<App/>‘ })
为什么已经定义了 components: { App } ,还需要 template: ‘<App/>‘ ?
问题解答:
el: ‘#app‘ :是指向 index.html 的<div id="app"></div>元素,该元素作为vue的挂载点
components :是声明有哪些组件
template : 是使用哪个组件
将 <App/> 挂载到 #app 这个元素,<App/> 本身是一个组件,即这里通过 components: { App } 注册组件,然后通过 template: ‘<App/>‘ 使用组件。
以上是关于关于Vue脚手架写法的问题的主要内容,如果未能解决你的问题,请参考以下文章