buat aplikasi () impor vue cli

import { createApp } from 'vue'
import App from './App.vue'

const app = createApp(App)
app.mount("#app")
Mohamad