zyejMAll-mobile/sheep/components/s-line-block/s-line-block.vue

16 lines
242 B
Vue
Raw Normal View History

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