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
.
これを書き直す正しい方法は何ですか?
ありがとう