-1👍
<script>
export default {
methods: {
go: function () {
this.$router.go("/app")
}
}
}
</script>
I think it should be this.$router.go
, not this.$route.router.go
It also looks like you’re calling in the wrong component. It should be <router-view></router-view>
not <route-view></route-view>
Source:stackexchange.com