Files
webpreview/src/main.ts
2025-02-24 18:42:11 +08:00

10 lines
201 B
TypeScript

import { createApp } from "vue"
import { create } from "naive-ui"
import "normalize.css"
import App from "./App.vue"
const app = createApp(App)
const naive = create()
app.use(naive)
app.mount("#app")