s-line-block.vue 237 B

1234567891011121314
  1. <template>
  2. <su-subline :color="data.lineColor" :lineStyle="data.style"></su-subline>
  3. </template>
  4. <script setup>
  5. const props = defineProps({
  6. data: {
  7. type: Object,
  8. default() {},
  9. },
  10. });
  11. </script>
  12. <style></style>