javascript
// Import Vue.js as an ES module                
import { createApp } from 'vue';
import App from './App.vue';

// Create a Vue.js app
const app = createApp(App);

// Mount the app to a DOM element
app.mount('#app');