first commit

This commit is contained in:
2024-01-21 20:48:03 +08:00
commit c4bdcac452
28 changed files with 7707 additions and 0 deletions

37
src/main.ts Normal file
View File

@@ -0,0 +1,37 @@
import { createApp } from "vue"
import {
create,
NButton,
NConfigProvider,
NInput,
NLayout,
NLayoutContent,
NLayoutHeader,
NSelect,
NSpace,
NSplit,
NFlex,
NIcon,
} from "naive-ui"
import App from "./App.vue"
import "normalize.css"
const naive = create({
components: [
NButton,
NConfigProvider,
NLayout,
NLayoutHeader,
NLayoutContent,
NSpace,
NInput,
NSelect,
NSplit,
NFlex,
NIcon,
],
})
const app = createApp(App)
app.use(naive)
app.mount("#app")