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

15 lines
202 B
Vue
Raw Normal View History

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>