[Vuejs]-Use containers for templates in vuejs using typescript

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

Leave a comment