(component): 完成 select 组件, 新增 tag-input 组件 disabled-input 属性

This commit is contained in:
就眠儀式
2022-09-24 09:50:53 +08:00
parent f52ff6207b
commit 06149b7e77
12 changed files with 142 additions and 54 deletions

View File

@@ -3,6 +3,7 @@ export default {
name: "TreadIcon",
};
</script>
<script setup lang="ts">
import LayIcon from "../component/icon/index";
@@ -11,6 +12,7 @@ const props = defineProps<{
size?: string;
}>();
</script>
<template>
<lay-icon :color="props.color" :size="props.size" type="layui-icon-tread" />
</template>