mirror of
https://github.com/fatedier/frp.git
synced 2025-05-15 03:38:27 +00:00
13 lines
231 B
TypeScript
13 lines
231 B
TypeScript
|
import { createApp } from "vue";
|
||
|
import "element-plus/dist/index.css";
|
||
|
import App from "./App.vue";
|
||
|
import router from "./router";
|
||
|
|
||
|
// import './assets/custom.css'
|
||
|
|
||
|
const app = createApp(App);
|
||
|
|
||
|
app.use(router);
|
||
|
|
||
|
app.mount("#app");
|