feat: 安装了datavue3
This commit is contained in:
parent
024301c294
commit
d3c47a12c3
|
@ -9,6 +9,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@element-plus/icons-vue": "2.0.10",
|
"@element-plus/icons-vue": "2.0.10",
|
||||||
|
"@kjgl77/datav-vue3": "^1.7.1",
|
||||||
"@tinymce/tinymce-vue": "5.0.0",
|
"@tinymce/tinymce-vue": "5.0.0",
|
||||||
"animate.css": "^4.1.1",
|
"animate.css": "^4.1.1",
|
||||||
"axios": "1.3.4",
|
"axios": "1.3.4",
|
||||||
|
|
|
@ -12,6 +12,7 @@ import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
||||||
import preventReClick from './utils/preventReClick'
|
import preventReClick from './utils/preventReClick'
|
||||||
import Print from './utils/print2'
|
import Print from './utils/print2'
|
||||||
import Xlsx from './utils/xlsx'
|
import Xlsx from './utils/xlsx'
|
||||||
|
import DataVVue3 from '@kjgl77/datav-vue3'
|
||||||
|
|
||||||
const app = createApp(App);
|
const app = createApp(App);
|
||||||
|
|
||||||
|
@ -24,6 +25,7 @@ app.use(ehsui);
|
||||||
app.use(preventReClick);
|
app.use(preventReClick);
|
||||||
app.use(Print);
|
app.use(Print);
|
||||||
app.use(Xlsx);
|
app.use(Xlsx);
|
||||||
|
app.use(DataVVue3)
|
||||||
//挂载app
|
//挂载app
|
||||||
app.mount('#app');
|
app.mount('#app');
|
||||||
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
||||||
|
|
Loading…
Reference in New Issue