修复block、template在IntrinsicElements未定义的提示

修复block、template在IntrinsicElements未定义的提示
This commit is contained in:
gladtoeatu 2024-11-26 13:07:53 +08:00 committed by GitHub
parent e97fb8d669
commit 6b99490232
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,3 +14,10 @@ declare const __UNI_PLATFORM__:
| 'quickapp-webview-union'
declare const __VITE_APP_PROXY__: 'true' | 'false'
declare namespace JSX {
interface IntrinsicElements {
template: any
block: any
}
}