2022-11-22 07:45:36 +00:00
|
|
|
<template>
|
2023-12-01 16:51:58 +00:00
|
|
|
<su-subline v-bind="data"></su-subline>
|
2022-11-22 07:45:36 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
const props = defineProps({
|
|
|
|
data: {
|
|
|
|
type: Object,
|
2023-12-01 16:51:58 +00:00
|
|
|
default: {},
|
2022-11-22 07:45:36 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style></style>
|