acdr-admin/yskj-ui/yskj-ui-mall-uniapp/sheep/components/s-line-block/s-line-block.vue

16 lines
242 B
Vue
Raw Normal View History

2024-09-13 11:31:48 +08:00
<!-- 装修基础组件分割线 -->
<template>
<su-subline v-bind="data"></su-subline>
</template>
<script setup>
const props = defineProps({
data: {
type: Object,
default: {},
},
});
</script>
<style></style>