filesbox/miniprogram/FilesBox/node_modules/@vant/weapp/dist/icon/index.js
2023-09-21 10:23:31 +08:00

21 lines
406 B
JavaScript

import { VantComponent } from '../common/component';
VantComponent({
props: {
dot: Boolean,
info: null,
size: null,
color: String,
customStyle: String,
classPrefix: {
type: String,
value: 'van-icon',
},
name: String,
},
methods: {
onClick() {
this.$emit('click');
},
},
});