非2.0的版本: <a v-link="{ path: '/abc', replace: true }"></a> <script> this.$router.go({ path: '/abc', replace: true }); </script> vue-router 2.0 <router-link :to="{ path: '/abc'}" replace></router-link>
非2.0的版本:
vue-router 2.0