Vueインスタンスをapp変数(グローバル)に代入してappからtestComponentのmymethodを実行したいです。
カスタムコンポーネントを使用していればref属性を使用してapp.$refsからアクセスできそうなのですが、以下のように書いている場合はどうすればよいのでしょうか。
イメージ的には「app.$refs.testComponent.mymethod();」ような記述方法です。
※vue-routerを使用しています。
javascript
1const testComponent = { 2 template: ` 3 <div> 4 <button @click="mymethod"></button> 5 </div>`, 6 methods: { 7 mymethod() {}, 8 }, 9}; 10 11const routes = [ 12 { path: "/", component: indexComponent }, 13 { path: "/test", component: testComponent }, 14]; 15 16 17const router = new VueRouter({ 18 mode: "history", 19 routes, // `routes: routes` の短縮表記 20}); 21 22const app = new Vue({ 23 router, 24}).$mount("#app"); 25
html
1 <div id="app"> 2 <router-view></router-view> 3 </div>
あなたの回答
tips
プレビュー