1

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.

これを書き直す正しい方法は何ですか?

ありがとう

4

2 に答える 2