mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-08 06:20:10 +08:00
6 lines
111 B
TypeScript
6 lines
111 B
TypeScript
import { createApp } from 'vue'
|
|
import './style.css'
|
|
import App from './App.vue'
|
|
|
|
createApp(App).mount('#app')
|