照明控制面板

This commit is contained in:
L
2024-06-06 11:57:16 +08:00
parent 9c3508fbc8
commit 14a7c158bc
5 changed files with 590 additions and 1 deletions

View File

@@ -5,6 +5,8 @@ import { apiModule } from '/@/api';
import { appConfig } from '/@/config';
import './theme/global.less';
import { LeftOutlined } from '@ant-design/icons-vue';
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
const app = createApp(App);
app.component('LeftOutlined', LeftOutlined);
saasInit({
@@ -12,4 +14,5 @@ saasInit({
apiModule,
appConfig,
});
app.use(ElementPlus)
app.mount('#app');