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

47
components/popup/props.js Normal file
View File

@@ -0,0 +1,47 @@
const props = {
closeBtn: {
type: Boolean,
},
closeOnOverlayClick: {
type: Boolean,
value: true,
},
content: {
type: String,
},
customStyle: {
type: String,
value: '',
},
externalClasses: {
type: Array,
},
overlayProps: {
type: Object,
value: {},
},
placement: {
type: String,
value: 'top',
},
preventScrollThrough: {
type: Boolean,
value: true,
},
showOverlay: {
type: Boolean,
value: true,
},
transitionProps: {
type: Object,
},
visible: {
type: Boolean,
value: null,
},
zIndex: {
type: Number,
value: 11500,
},
};
export default props;