mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
解决 naive-ui 的警告问题
This commit is contained in:
parent
5e3d0a0967
commit
55e52fdf05
12
.fes.js
12
.fes.js
@ -4,7 +4,7 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2023-10-16 10:53:09
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-05-27 15:50:16
|
||||
* @LastEditTime: 2024-05-27 18:38:02
|
||||
*/
|
||||
// import { resolve } from 'path';
|
||||
import { join } from 'path'
|
||||
@ -15,6 +15,10 @@ import UnoCSS from 'unocss/vite'
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import glsl from 'vite-plugin-glsl'
|
||||
|
||||
const combinedIsCustomElement = (tag) => {
|
||||
return tag.startsWith('iconify-icon') || templateCompilerOptions.template.compilerOptions.isCustomElement(tag)
|
||||
}
|
||||
|
||||
export default defineBuildConfig({
|
||||
title: 'TvT.js',
|
||||
publicPath: './',
|
||||
@ -35,7 +39,11 @@ export default defineBuildConfig({
|
||||
},
|
||||
//add by 地虎降天龙
|
||||
viteVuePlugin: {
|
||||
...templateCompilerOptions,
|
||||
template: {
|
||||
compilerOptions: {
|
||||
isCustomElement: (tag) => combinedIsCustomElement(tag),
|
||||
},
|
||||
},
|
||||
},
|
||||
viteOption: {
|
||||
base: './',
|
||||
|
@ -4,7 +4,7 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2023-10-21 17:24:44
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-05-24 09:56:20
|
||||
* @LastEditTime: 2024-05-27 18:45:28
|
||||
-->
|
||||
<template>
|
||||
<Suspense>
|
||||
|
8308
src/plugins/goView/lib/utils/1716775459252.json
Normal file
8308
src/plugins/goView/lib/utils/1716775459252.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -9,8 +9,8 @@
|
||||
import { useChartEditStore } from '../../stores/chartEditStore'
|
||||
|
||||
//@ts-ignore
|
||||
import dataJson from './test.json'
|
||||
// import dataJson from './1716775459252.json'
|
||||
// import dataJson from './test.json'
|
||||
import dataJson from './1716775459252.json'
|
||||
|
||||
const chartEditStore = useChartEditStore()
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-05-27 11:22:46
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-05-27 18:03:54
|
||||
* @LastEditTime: 2024-05-27 19:13:19
|
||||
-->
|
||||
<template>
|
||||
<div :class="`go-preview ${chartEditStore.editCanvasConfig.previewScaleType}`" @mousedown="dragCanvas">
|
||||
@ -28,6 +28,9 @@ import { getFilterStyle } from '../lib/utils/global'
|
||||
|
||||
import { PreviewRenderList } from '../components/PreviewRenderList'
|
||||
|
||||
import naive from 'naive-ui'
|
||||
window['$vue'].use(naive)
|
||||
|
||||
// @ts-ignore
|
||||
await getSessionStorageInfo()
|
||||
const chartEditStore = useChartEditStore() as any
|
||||
|
@ -4,7 +4,7 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-05-27 11:39:08
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-05-27 17:22:46
|
||||
* @LastEditTime: 2024-05-27 18:08:58
|
||||
*/
|
||||
import { defineStore } from 'pinia'
|
||||
import { globalThemeJson } from '../lib/settings'
|
||||
@ -78,4 +78,30 @@ export const useChartEditStore = defineStore({
|
||||
// 图表数组(需存储给后端)
|
||||
componentList: [],
|
||||
}),
|
||||
getters: {
|
||||
getMousePosition(): any {
|
||||
return this.mousePosition
|
||||
},
|
||||
getRightMenuShow(): boolean {
|
||||
return this.rightMenuShow
|
||||
},
|
||||
getEditCanvas(): any {
|
||||
return this.editCanvas
|
||||
},
|
||||
getEditCanvasConfig(): any {
|
||||
return this.editCanvasConfig
|
||||
},
|
||||
getTargetChart(): any {
|
||||
return this.targetChart
|
||||
},
|
||||
getRecordChart(): any | undefined {
|
||||
return this.recordChart
|
||||
},
|
||||
getRequestGlobalConfig(): any {
|
||||
return this.requestGlobalConfig
|
||||
},
|
||||
getComponentList(): any {
|
||||
return this.componentList
|
||||
}
|
||||
},
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user