vant-weapp/lib/icon/index.js
2021-09-22 16:28:37 +08:00

23 lines
503 B
JavaScript

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