mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-30 13:16:34 +08:00
14 lines
166 B
Vue
14 lines
166 B
Vue
<template>
|
|
<i :class="'zenui-icon-' + name"></i>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'z-icon',
|
|
|
|
props: {
|
|
name: String
|
|
}
|
|
};
|
|
</script>
|