vant/packages/icon/src/icon.vue
2017-04-12 15:01:45 +08:00

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>