houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 1 <template>
H 2   <div
3     class="flex items-center"
4     :style="{
5       height: property.height + 'px'
6     }"
7   >
8     <div
9       class="w-full"
10       :style="{
11         borderTopStyle: property.borderType,
12         borderTopColor: property.lineColor,
13         borderTopWidth: `${property.lineWidth}px`,
14         margin: property.paddingType === 'none' ? '0' : '0px 16px'
15       }"
16     ></div>
17   </div>
18 </template>
19
20 <script setup lang="ts">
21 import { DividerProperty } from './config'
22
23 /** 页面顶部导航栏 */
24 defineOptions({ name: 'Divider' })
25
26 defineProps<{ property: DividerProperty }>()
27 </script>
28
29 <style scoped lang="scss"></style>