给我你的怀抱2017-06-26 10:52:30
在main.js實例化Vue時候的methods
裡寫這個,然後其他地方呼叫時候,呼叫$root.link
即可。
var app = new Vue({
el: '#app',
router,
components: {App},
template: '<App />',
methods: {
link: function(to) { ... }
},
...
});
不是在App.vue
裡寫,多謝@科克拉多克 的指正。