1
0

props.ts 283 B

12345678910111213141516
  1. import { PropType } from 'vue';
  2. export interface BasicProps {
  3. width: string;
  4. height: string;
  5. }
  6. export const basicProps = {
  7. width: {
  8. type: String as PropType<string>,
  9. default: '100%',
  10. },
  11. height: {
  12. type: String as PropType<string>,
  13. default: '280px',
  14. },
  15. };