使用 vuejs 1 的代码是:
const App = Vue.extend(Index);
router.start(App, '#app');
组件在哪里Index
。
我尝试将其转换为 vue 2,如下所示:
const App = Vue.extend(Index);
const app = new App(router).$mount('#app');
但这给出了一个[Vue warn]: Error when rendering root instance
.
重写这个的正确方法是什么?
谢谢