Files
quinn-wx/components/grid/grid-item-props.js
2022-11-17 17:05:46 +08:00

28 lines
427 B
JavaScript

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;