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

View File

@@ -0,0 +1,45 @@
const props = {
animation: {
type: String,
value: 'slide',
},
autoplay: {
type: Boolean,
value: true,
},
current: {
type: Number,
value: null,
},
defaultCurrent: {
type: Number,
value: 0,
},
direction: {
type: String,
value: 'horizontal',
},
duration: {
type: Number,
value: 300,
},
height: {
type: Number,
},
interval: {
type: Number,
value: 5000,
},
loop: {
type: Boolean,
value: true,
},
navigation: {
type: Object,
},
paginationPosition: {
type: String,
value: 'bottom',
},
};
export default props;