123456789101112131415161718192021222324252627282930 |
- const props = {
- content: {
- type: String,
- },
- 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;
|