12345678910111213141516171819202122232425 |
- "use strict";
- var _component = require("../common/component");
- (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() {}
- }
- });
|