problem description
A combination of vue+typescript is used in the project, but the mounted hook is not triggered.
the environmental background of the problems and what methods you have tried
I have tried to find it on Stack Overflow. It may be my poor English, but I can"t find a suitable solution
related codes
/ / Please paste the code text below (do not replace the code with pictures)
import { Vue } from "vue-property-decorator";
export default class Home extends Vue {
mounted():void{
console.log(12);
}
}