| 123456789101112131415161718192021222324252627 |
- const props = {
- backgroundColor: {
- type: String,
- value: '',
- },
- customStyle: {
- type: String,
- value: '',
- },
- duration: {
- type: Number,
- value: 300,
- },
- preventScrollThrough: {
- type: Boolean,
- value: true,
- },
- style: {
- type: String,
- value: '',
- },
- zIndex: {
- type: Number,
- value: 11000,
- },
- };
- export default props;
|