mirror of
https://gitee.com/liuxioabin/fengketrade.git
synced 2026-04-17 21:03:17 +08:00
15 lines
237 B
Vue
15 lines
237 B
Vue
<template>
|
|
<su-subline :color="data.lineColor" :lineStyle="data.style"></su-subline>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
data: {
|
|
type: Object,
|
|
default() {},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style></style>
|