[新增] 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,14 @@
<template>
<div class="layui-row">
<div class="layui-row" :class="[space?'layui-col-space'+space:'']">
<slot></slot>
</div>
</template>
<script setup name="LayRow" lang="ts">
import { defineProps } from '@vue/runtime-core'
const props =
defineProps<{
space?: string
}>()
</script>