Files
geg-gas-web/src/views/dashboard/analysis/components/props.ts

17 lines
283 B
TypeScript
Raw Normal View History

2024-02-05 09:15:37 +08:00
import { PropType } from 'vue';
export interface BasicProps {
width: string;
height: string;
}
export const basicProps = {
width: {
type: String as PropType<string>,
default: '100%',
},
height: {
type: String as PropType<string>,
default: '280px',
},
};