0👍
The problem was in following a tutorial that recommended importing Vue and Component from vue-property-decorator
import {Vue, Component} from "vue-property-decorator"
The above causes the router to not work correctly, when reading the official documentation and using:
import Vue from "vue";
import Component from "vue-class-component";
it works perfectly
thanks to those who read
- [Vuejs]-How to set up lenght string in array
- [Vuejs]-Vue – Error: Cannot find module 'webpack/bin/config-yargs'
Source:stackexchange.com