yunshangxie-admin/jsx.d.ts

14 lines
235 B
TypeScript

import Vue, { VNode } from 'vue';
declare global {
namespace JSX {
type Element = VNode;
type ElementClass = Vue;
interface IntrinsicElements {
[elem: string]: any;
}
type IntrinsicAttributes = any;
}
}