[新增] progress 进度条组件
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user