sample ui

This commit is contained in:
Simon Ding
2024-07-01 17:48:56 +08:00
parent 6b7b24f912
commit d5f45dd254
191 changed files with 23624 additions and 0 deletions

22
ui/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;
}
}
}