0

在安装路由器之前,我设置了一个全局 Vue 实例并像这样使用 vue-resource:

export const befriend = (recipient, event) => {
    Vue.http.post('/route',{
        // Data
    }).then(function(response) {
        // Success
    }.bind(this), function(response) {
        // Error
    });
}

现在我的 Vue 实例正在由路由器本身实例化,如下所示:

router.start(App, 'body');

当我的实例没有绑定变量时如何使用 vue-resource?

4

1 回答 1

1

没关系,我在隐藏在页面底部的 vue-router 文档中找到了答案。

此外:

初始渲染完成后,根 Vue 实例将作为 router.app 使用。

路由器实例将作为 this.$router 在路由器应用程序的所有后代中可用。

希望这对没有阅读所有文档的其他人有用。

于 2016-08-16T07:37:31.840 回答