初始化my语音管理后台

This commit is contained in:
yziiy
2025-09-26 14:57:26 +08:00
parent 3f077984a4
commit d4149fb75f
470 changed files with 50760 additions and 0 deletions

22
types/shims-tsx.d.ts vendored Normal file
View File

@@ -0,0 +1,22 @@
import Vue, { VNode } from "vue";
declare module "*.tsx" {
import Vue from "compatible-vue";
export default Vue;
}
declare global {
namespace JSX {
interface Element extends VNode {}
interface ElementClass extends Vue {}
interface ElementAttributesProperty {
$props: any;
}
interface IntrinsicElements {
[elem: string]: any;
}
interface IntrinsicAttributes {
[elem: string]: any;
}
}
}