mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
22 lines
435 B
JavaScript
22 lines
435 B
JavaScript
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
classes: ['info-class'],
|
|
props: {
|
|
dot: Boolean,
|
|
info: null,
|
|
size: null,
|
|
color: String,
|
|
customStyle: String,
|
|
classPrefix: {
|
|
type: String,
|
|
value: 'van-icon',
|
|
},
|
|
name: String,
|
|
},
|
|
methods: {
|
|
onClick() {
|
|
this.$emit('click');
|
|
},
|
|
},
|
|
});
|