9
new Vue({ router, store, }).$mount('#app') 之后,为什么#app里的svg内容还在呢?
new Vue({ router, store, }).$mount('#app') 之后,为什么#app里的svg内容还在呢?
当然还在,为什么会消失
你这儿挂载之后,没有把#app里的内容覆盖,而是在注入了路由。是这样吗?
new Vue({ router, store, }).$mount('#app') 这里好像也没写渲染App组件,是怎么渲染的呢?
这里的$mount('#app') 把 App.vue 挂在到 index.html 里的 #app 里面去了吧.
应该是router.js里的顶层路由的原因