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

15 lines
237 B
Vue
Raw Normal View History

2022-11-22 07:45:36 +00:00
<template>
<su-subline :color="data.lineColor" :lineStyle="data.style"></su-subline>
</template>
<script setup>
const props = defineProps({
data: {
type: Object,
default() {},
},
});
</script>
<style></style>