vant-weapp/lib/icon/index.js
2019-04-03 10:21:53 +08:00

22 lines
479 B
JavaScript

"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');
}
}
});