project init

This commit is contained in:
limqhz
2022-11-17 17:05:46 +08:00
parent 597b107cf7
commit eec0e5575f
108 changed files with 4483 additions and 36 deletions

38
components/image/props.js Normal file
View File

@@ -0,0 +1,38 @@
const props = {
error: {
type: String,
value: 'default',
},
externalClasses: {
type: Array,
},
lazy: {
type: Boolean,
value: false,
},
loading: {
type: String,
value: 'default',
},
shape: {
type: String,
value: 'square',
},
src: {
type: String,
value: '',
},
mode: {
type: String,
value: 'scaleToFill',
},
webp: {
type: Boolean,
value: false,
},
showMenuByLongpress: {
type: Boolean,
value: false,
},
};
export default props;