feat: 添加 element plus

This commit is contained in:
王红彬
2024-09-06 14:22:45 +08:00
parent 29d8f53f87
commit 31cfc61e1c
8 changed files with 706 additions and 6 deletions

View File

@@ -2,7 +2,6 @@ import { createApp } from 'vue';
import { createI18n } from 'vue-i18n';
import App from './App.vue';
import './style.css';
const i18n = createI18n({
locale: 'zh',
fallbackLocale: 'en',
@@ -22,5 +21,4 @@ const i18n = createI18n({
const app = createApp(App);
app.use(i18n);
app.mount('#app');