123456789101112131415161718192021222324252627 |
- const props = {
- description: {
- type: String,
- },
- externalClasses: {
- type: Array,
- },
- image: {
- type: String,
- },
- jumpType: {
- type: String,
- value: 'navigate-to',
- },
- layout: {
- type: String,
- value: 'vertical',
- },
- text: {
- type: String,
- },
- url: {
- type: String,
- value: '',
- },
- };
- export default props;
|