vue-resource
vue-resource copied to clipboard
how to use vue-router in vue-resource?
example:
import Vue from 'vue'
let loginMiddleware = function (request,next) {
next(function (response) {
if(response.status == 403){
Vue.router.push('/home')
}
})
}
I got - TypeError: Cannot read property 'push' of undefined.
How can this work? No matter $router or router just not work.