mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 17:58:17 +08:00
25 lines
421 B
JavaScript
25 lines
421 B
JavaScript
"use strict";
|
|
|
|
var _component = require('./../common/component.js');
|
|
|
|
(0, _component.VantComponent)({
|
|
props: {
|
|
show: Boolean,
|
|
customStyle: String,
|
|
duration: {
|
|
type: null,
|
|
value: 300
|
|
},
|
|
zIndex: {
|
|
type: Number,
|
|
value: 1
|
|
}
|
|
},
|
|
methods: {
|
|
onClick: function onClick() {
|
|
this.$emit('click');
|
|
},
|
|
// for prevent touchmove
|
|
noop: function noop() {}
|
|
}
|
|
}); |