mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-08-17 01:30:01 +08:00
14 lines
185 B
Vue
14 lines
185 B
Vue
<template>
|
|
<i class="zanui-icon" :class="'zan-icon-' + name"></i>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'zan-icon',
|
|
|
|
props: {
|
|
name: String
|
|
}
|
|
};
|
|
</script>
|