123456789101112131415161718192021222324 |
- const props = {
- customStyle: {
- type: String,
- value: '',
- },
- color: {
- type: String,
- value: '',
- },
- name: {
- type: String,
- value: '',
- required: true,
- },
- size: {
- type: String,
- value: undefined,
- },
- prefix: {
- type: String,
- value: undefined,
- },
- };
- export default props;
|