12345678910111213141516171819202122 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- const component = require('../common/component');
- component.VantComponent({
- classes: [
- 'custom-class',
- 'thumb-class'
- ],
- props: {
- thumb: String,
- lazyLoad: Boolean,
- thumbMode: {
- type: String,
- value: 'scaleToFill'
- }
- },
- methods: {
- onClickThumb: function() {
- this.$emit('thumbClick');
- }
- }
- });
|