From 81e54a2f94f382bcb9838c8dd79c5119b8e8f14f Mon Sep 17 00:00:00 2001 From: Gary Gu <garygu@Garydebijibendiannao.local> Date: Tue, 03 Jun 2025 11:44:41 +0800 Subject: [PATCH] feat: 优化无数据显示 --- src/main.js | 26 ++++++++++++++++++++------ 1 files changed, 20 insertions(+), 6 deletions(-) diff --git a/src/main.js b/src/main.js index 4988e8e..5defe7b 100644 --- a/src/main.js +++ b/src/main.js @@ -1,3 +1,11 @@ +/* + * @Author: gjj Ganjj@probim.com.cn + * @Date: 2025-02-14 14:32:17 + * @LastEditors: gjj Ganjj@probim.com.cn + * @LastEditTime: 2025-03-17 11:40:33 + * @FilePath: \北京交通大学\src\main.js + * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE + */ import Vue from "vue"; //todo:更改为按需引入 @@ -16,14 +24,20 @@ import "@css/tail-wind/index.css"; import "@css/element-ui-override.scss"; import "@css/self-global.scss"; +// import 'lib-flexible/flexible' +// import 'lib-flexible/flexible.js' +// import 'lib-flexible' +import VueFullscreen from 'vue-fullscreen' + +Vue.use(VueFullscreen) Vue.config.productionTip = false; new Vue({ - store, - router, - render: (h) => { - return h(App); - }, -}).$mount("#app"); + store, + router, + render: (h) => { + return h(App); + }, +}).$mount("#app"); \ No newline at end of file -- Gitblit v1.9.3