| 123456789101112131415161718192021 | 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');        },    },});
 |