mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
22 lines
322 B
TypeScript
22 lines
322 B
TypeScript
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');
|
|
}
|
|
}
|
|
});
|