1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00

18 lines
261 B
Vue

<template>
<i class="van-icon" :class="`van-icon-${name}`" v-on="$listeners">
<slot></slot>
</i>
</template>
<script>
import install from '../utils/install';
export default {
install,
name: 'van-icon',
props: {
name: String
}
};
</script>