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

16 lines
242 B
Vue
Raw Permalink Normal View History

2023-12-19 15:10:50 +00:00
<!-- 装修基础组件分割线 -->
2022-11-22 07:45:36 +00:00
<template>
<su-subline v-bind="data"></su-subline>
2022-11-22 07:45:36 +00:00
</template>
<script setup>
const props = defineProps({
data: {
type: Object,
default: {},
2022-11-22 07:45:36 +00:00
},
});
</script>
<style></style>