gMainApp.component( "main-app", { data() { return { isLoaded: false, } ; }, template: `
Hello, world!
`, mounted() { this.isLoaded = true ; }, } ) ;