Rodney Chen
2024-07-06 e34d8f9133f196f17667d8051a6a9d080b0385fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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',
  },
};