12345678910111213141516171819202122232425262728293031323334353637383940 |
- const props = {
- align: {
- type: String,
- value: null,
- },
- borderless: {
- type: Boolean,
- value: false,
- },
- customStyle: {
- type: String,
- value: '',
- },
- disabled: {
- type: Boolean,
- value: undefined,
- },
- icon: {
- type: null,
- value: 'fill-circle',
- },
- keys: {
- type: Object,
- },
- name: {
- type: String,
- value: '',
- },
- options: {
- type: Array,
- },
- value: {
- type: null,
- value: null,
- },
- defaultValue: {
- type: null,
- },
- };
- export default props;
|