mirror of
https://github.com/fatedier/frp.git
synced 2025-03-14 00:03:37 +00:00
14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
import { createApp } from 'vue'
|
|
import 'element-plus/dist/index.css'
|
|
import 'element-plus/theme-chalk/dark/css-vars.css'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
|
|
import './assets/dark.css'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|