12345678910111213141516171819202122232425262728293031323334 |
- const props = {
- content: {
- type: String,
- },
- customStyle: {
- type: String,
- value: '',
- },
- disabled: {
- type: Boolean,
- value: undefined,
- },
- expandIcon: {
- type: Boolean,
- value: undefined,
- },
- externalClasses: {
- type: Array,
- },
- header: {
- type: String,
- },
- headerRightContent: {
- type: String,
- },
- placement: {
- type: String,
- value: 'bottom',
- },
- value: {
- type: null,
- },
- };
- export default props;
|