感谢:https://blog.csdn.net/qq_35624642/article/details/78243413
index.html
<body> <div id="app"></div> <!-- built files will be auto injected --> </body>
App.vue
<template> <div id="app"> <h1 class="title">头部</h1> <router-view></router-view> </div> </template>
main.js
new Vue({ el: '#app', router, template: '<App/>', components: { App } })
在main.js的初始化中,el:'#app'到底绑定的是哪个文件中的id='app'
答:将index.html
的id="app"
改成其他值,会报错。因此,el: '#app'
绑定的是index.html
中的id="app"
的元素