yudao-mall-uniapp/sheep/components/s-line-block/s-line-block.vue

16 lines
242 B
Vue
Raw Normal View History

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