vue实例中template: App,这样写是什么意思
vue实例中template: ‘’,这样写是什么意思官网的描述:模板将会替换挂载的元素。挂载元素的内容都将被忽略也就是说:template: ‘’ 表示用替换index.html里面的如果还是不明白,改成这样子就好理解了:index.htmlmain.jsnew Vue({el:’#myapp’,router,compo...
·
vue实例中template: ‘’,这样写是什么意思 官网的描述: 模板将会替换挂载的元素。挂载元素的内容都将被忽略 也就是说:template: ‘’ 表示用替换index.html里面的
如果还是不明白,改成这样子就好理解了: index.html
main.js
new Vue({
el:’#myapp’,
router,
components:{App}
})
这样写的意思是:实例化一个Vue,挂载到id为myapp的div里面,这个vue实例有个局部组件App。
代码如下
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>vuecli_01</title>
</head>
<body>
<div id="app">11</div>
<!-- built files will be auto injected -->
</body>
</html>
// 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 './App'
import router from './router'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
})
更多推荐
已为社区贡献3条内容
所有评论(0)