mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
23 lines
354 B
Vue
23 lines
354 B
Vue
<template>
|
|
<i class="zan-icon" :class="'zan-icon-' + name" @click="handleIconClick"></i>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'zan-icon',
|
|
|
|
props: {
|
|
name: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
handleIconClick(event) {
|
|
this.$emit('click', event);
|
|
}
|
|
}
|
|
};
|
|
</script>
|