chore: structure change

This commit is contained in:
xiaoxian521
2021-04-14 16:44:58 +08:00
parent e027fec6dc
commit f4cd720ce8
43 changed files with 859 additions and 766 deletions

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

@@ -0,0 +1,16 @@
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 IntrinsicElements {
[elem: string]: any
}
}
}