解决 naive-ui 的警告问题

This commit is contained in:
hawk86104 2024-05-27 19:15:03 +08:00
parent 5e3d0a0967
commit 55e52fdf05
6 changed files with 8352 additions and 7 deletions

12
.fes.js
View File

@ -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: './',

View File

@ -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>

File diff suppressed because it is too large Load Diff

View File

@ -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()

View File

@ -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

View File

@ -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
}
},
})