在安装路由器之前,我设置了一个全局 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?