nantai-erp-wechat-mobile/miniprogram_npm/vant-weapp/icon/index.js

20 lines
382 B
JavaScript
Raw Permalink Normal View History

2024-10-31 21:29:57 +08:00
import { VantComponent } from '../common/component';
VantComponent({
props: {
info: null,
name: String,
size: String,
color: String,
customStyle: String,
classPrefix: {
type: String,
value: 'van-icon'
}
},
methods: {
onClick() {
this.$emit('click');
}
}
});