mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
fix: 解决 TS 类型错误问题
This commit is contained in:
parent
952e61bbba
commit
9f3ca6b614
@ -63,7 +63,7 @@ watch(
|
|||||||
() => props.chartConfig.option,
|
() => props.chartConfig.option,
|
||||||
newVal => {
|
newVal => {
|
||||||
try {
|
try {
|
||||||
updateDatasetHandler((newVal as OptionType).dataset)
|
updateDatasetHandler((newVal as any as OptionType).dataset)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log(error)
|
console.log(error)
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"lib": ["es6", "ESNext", "dom"],
|
"lib": ["es6", "ESNext", "dom"],
|
||||||
"types": ["vite/client", "naive-ui/volar"],
|
"types": ["vite/client"],
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": ["src/*"],
|
"@/*": ["src/*"],
|
||||||
"/#/*": ["types/*"]
|
"/#/*": ["types/*"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user