[新增] progress 进度条组件

This commit is contained in:
就眠仪式
2021-09-27 09:24:54 +08:00
parent 1cee98414e
commit d7e6036cbc
6 changed files with 61 additions and 5 deletions

View File

@@ -1,9 +1,16 @@
<template>
<div class="layui-col">
<div class="layui-col" :class="[md?'layui-col-md' + md : '', xs?'layui-col-xs':'', sm?'layui-col-sm':'']">
<slot></slot>
</div>
</template>
<script setup name="LayCol" lang="ts">
import { defineProps } from '@vue/runtime-core'
</script>
const props =
defineProps<{
md?: string
xs?: string
sm?: string
}>()
</script>