我需要检测浏览器中的后退功能,并需要使用 vue js 重定向到不同的页面。我的尝试如下。
mounted: function () {
window.onpopstate = function(event) {
this.$router.push({
path: "/register"
});
};
}
但它不会识别 $router 并说它不是一个函数。我怎么解决这个问题?
呼啦一阵风
相关分类