Files
cloudflare_temp_email/frontend/src/main.js
dreamhunter2333 bd08a85016 feat: init
2023-08-16 11:13:26 +08:00

6 lines
106 B
JavaScript

import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(App)
app.mount('#app')