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