wms-antdvue/.svn/pristine/1a/1ad27f9058e6eef00098939a8cf02ab267ea90cd.svn-base
2024-11-07 16:33:03 +08:00

18 lines
284 B
Plaintext

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',
},
};