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

15 lines
202 B
Vue
Raw Normal View History

2023-12-13 03:35:02 +00:00
<template>
<su-subline v-bind="data"></su-subline>
</template>
<script setup>
const props = defineProps({
data: {
type: Object,
default: {},
},
});
</script>
<style></style>