Vue in the form of typescript, how to use the mount method? Mounted

ask for code display. Watch and other things are implemented by a third-party plug-in library, but the mount has not been found

.
May.22,2021

define member methods directly in the class.

import Vue from 'vue';
import Component from 'vue-class-component';

@Component
export default class App extends Vue {
  mounted() {
    console.log('mounted');
  }
}
Menu