是否可以在不包括VueRouter的情况下对Vue组件中的URL更改使用react?

如果存在VueRouter,我们可以观看$ route,但是,我的应用程序不依赖VueRouter。

export default {
    watch: { '$route': route => console.log(window.location.href) }
}

最佳答案

在使用vue路由器之前,我做了类似的事情...

data: function() {
  return {
     route: window.location.hash,
     page: 'home'
  }
},
watch: {
  route: function(){
    this.page = window.location.hash.split("#/")[1];
  }
}

关于url - Vue-在没有VueRouter的情况下观看网址,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48331869/

10-12 20:53