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