123456789101112131415161718192021 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var component_1 = require("../common/component");
- component_1.VantComponent({
- props: {
- info: null,
- name: String,
- size: String,
- color: String,
- customStyle: String,
- classPrefix: {
- type: String,
- value: 'van-icon'
- }
- },
- methods: {
- onClick: function () {
- this.$emit('click');
- }
- }
- });
|