mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-06-01 11:19:16 +08:00
20 lines
306 B
Vue
20 lines
306 B
Vue
<template>
|
|
<i class="zan-icon" :class="'zan-icon-' + name" @click="handleIconClick"></i>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'zan-icon',
|
|
|
|
props: {
|
|
name: String
|
|
},
|
|
|
|
methods: {
|
|
handleIconClick(event) {
|
|
this.$emit('click', event);
|
|
}
|
|
}
|
|
};
|
|
</script>
|