UNPKG

kui-vue

Version:

A lightweight desktop UI component library suitable for Vue.js 2.

19 lines (17 loc) 481 B
<cn> ### 图标 可以设置 icon 属性,或者直接在 Tag 内使用 Icon 组件。 </cn> ```vue <template> <Space wrap> <Tag :icon="LogoTwitter" color="#55acee">Twitter</Tag> <Tag :icon="LogoYoutube" color="#cd201f">油管</Tag> <Tag :icon="LogoQq" color="red">QQ</Tag> <Tag :icon="LogoWechat" closeable color="green">微信</Tag> </Space> </template> <script setup> import { LogoTwitter, LogoYoutube, LogoQq, LogoWechat } from "kui-icons"; </script> ```