# Icon 图标
开眼常用icon封装
# 可选参数
Prop | type | Required | Default | Description |
---|---|---|---|---|
type | String | yes | - | icon的名称 |
注:有默认宽高,也可以通过自定义样式来调整大小
# 使用方法
<template>
<vs-icon type='icon-right'></vs-icon>
</template>
<script>
import { Icon } from 'horizon-ui'
export default {
components: {
vs-icon:Icon
}
}
</script>