Newer
Older
dxCard-admin / src / views / dashboard / Analysis / components / props.ts
YFJ on 23 Sep 283 bytes 项目推送
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',
  },
};