const APP = { data(){ return { msg: 'Hello, Vue3!!' } } } Vue.createApp(APP).mount('#app')
<div id="app"> {{msg}} </div>