init:库尔勒妇幼项目初始化

This commit is contained in:
Elliott
2025-07-23 14:39:14 +08:00
commit 8c9d4af4e0
55 changed files with 13218 additions and 0 deletions

18
src/App.vue Normal file
View File

@@ -0,0 +1,18 @@
<script setup>
import { ElConfigProvider } from 'element-plus'
import zhCn from 'element-plus/es/locale/lang/zh-cn'
import dayjs from "dayjs";
import "dayjs/locale/zh-cn";
dayjs.locale("zh-cn");
</script>
<template>
<el-config-provider :locale="zhCn">
<router-view/>
</el-config-provider>
</template>
<style scoped>
</style>