2021-12-29 16:44:43 +00:00
|
|
|
|
::: anchor
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
::: title 基础使用
|
|
|
|
|
:::
|
|
|
|
|
|
2022-04-21 00:04:08 +00:00
|
|
|
|
::: describe 默认为水平分割线
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
::: demo
|
2021-09-27 14:01:22 +00:00
|
|
|
|
|
|
|
|
|
<template>
|
2021-09-28 01:42:28 +00:00
|
|
|
|
默认分割线
|
2021-10-06 15:22:30 +00:00
|
|
|
|
<lay-line></lay-line><br/>
|
2021-09-28 01:42:28 +00:00
|
|
|
|
赤色分割线
|
2021-10-06 15:22:30 +00:00
|
|
|
|
<lay-line theme="red"></lay-line><br/>
|
2021-09-28 01:42:28 +00:00
|
|
|
|
橙色分割线
|
2021-10-06 15:22:30 +00:00
|
|
|
|
<lay-line theme="orange"></lay-line><br/>
|
2021-09-28 01:42:28 +00:00
|
|
|
|
墨绿分割线
|
2021-10-06 15:22:30 +00:00
|
|
|
|
<lay-line theme="green"></lay-line><br/>
|
2021-09-28 01:42:28 +00:00
|
|
|
|
青色分割线
|
2021-10-06 15:22:30 +00:00
|
|
|
|
<lay-line theme="cyan"></lay-line><br/>
|
2021-09-28 01:42:28 +00:00
|
|
|
|
蓝色分割线
|
2021-10-06 15:22:30 +00:00
|
|
|
|
<lay-line theme="blue"></lay-line><br/>
|
2021-09-28 01:42:28 +00:00
|
|
|
|
黑色分割线
|
2021-10-06 15:22:30 +00:00
|
|
|
|
<lay-line theme="black"></lay-line><br/>
|
2022-04-21 00:04:08 +00:00
|
|
|
|
自定义颜色
|
|
|
|
|
<lay-line theme="#EEF08D"></lay-line><br/>
|
2021-09-27 14:01:22 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { ref } from 'vue'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
setup() {
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
:::
|
2021-10-01 10:20:41 +00:00
|
|
|
|
|
2022-04-21 00:04:08 +00:00
|
|
|
|
::: title 带内容的分割线
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
::: describe 带内容的分割线,contentPosition 属性设置内容位置,offset 属性设置内容偏移量, 单位 <code>px</code> 或百分比值。也可以通过 <code>border-style</code>和<code>border-width</code>自定义样式
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
::: demo
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<lay-line>🌲 🌲 🌲 🌲</lay-line><br>
|
|
|
|
|
<lay-line contentPosition="left">left 默认</lay-line><br>
|
|
|
|
|
<lay-line contentPosition="right" offset="8%">right 百分比</lay-line><br>
|
|
|
|
|
<lay-line border-style="dashed" border-width="3px">自 定 义 宽 度 和 样 式</lay-line><br>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::: title 竖直分割线
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
::: describe 设置 <code>direction = 'vertical'</code> 即可使用竖直分割线
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
::: demo
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
默认分割线
|
|
|
|
|
<lay-line direction="vertical"></lay-line>
|
|
|
|
|
赤色分割线
|
|
|
|
|
<lay-line direction="vertical" theme="red"></lay-line>
|
|
|
|
|
橙色分割线
|
|
|
|
|
<lay-line direction="vertical" theme="orange"></lay-line>
|
|
|
|
|
墨绿分割线
|
|
|
|
|
<lay-line direction="vertical" theme="green"></lay-line>
|
|
|
|
|
青色分割线
|
|
|
|
|
<lay-line direction="vertical" theme="cyan"></lay-line>
|
|
|
|
|
蓝色分割线
|
|
|
|
|
<lay-line direction="vertical" theme="blue"></lay-line>
|
|
|
|
|
黑色分割线
|
|
|
|
|
<lay-line direction="vertical" theme="black"></lay-line>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-01-09 17:17:03 +00:00
|
|
|
|
::: title Line 属性
|
2021-10-13 02:04:43 +00:00
|
|
|
|
:::
|
2021-10-12 10:00:09 +00:00
|
|
|
|
|
2021-11-07 07:55:08 +00:00
|
|
|
|
::: table
|
|
|
|
|
|
2022-04-21 00:04:08 +00:00
|
|
|
|
| 属性 | 说明 | 可选值 |
|
2021-10-25 17:14:17 +00:00
|
|
|
|
| ----- | ----------- | --------------------------------------------- |
|
2022-04-21 00:04:08 +00:00
|
|
|
|
| direction | 分割线的方向 | `horizontal` `vertical`|
|
|
|
|
|
| contentPosition | 分割线内容位置 | `center` `left` `right` |
|
|
|
|
|
| offset | 分割线内容偏移量,单位 px | eg: `30px` `20%`|
|
|
|
|
|
| theme | 主题 | `red` `orange` `green` `cyan` `blue` `black` `gray` 或 string |
|
|
|
|
|
| borderWidth | 分割线宽度,单位 px | eg: `2px`|
|
|
|
|
|
| borderStyle | 分割线样式 | <a href="https://developer.mozilla.org/zh-CN/docs/Web/CSS/border-style">参见MDN:border-style</a> |
|
|
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
::: title Line 插槽
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
|
|
::: table
|
|
|
|
|
|
|
|
|
|
| 插槽 | 说明 |
|
|
|
|
|
| ------ | ---------- |
|
|
|
|
|
| default| 默认插槽,仅支持 direction 为 `horizontal`|
|
2021-11-07 07:55:08 +00:00
|
|
|
|
|
2021-11-07 07:56:24 +00:00
|
|
|
|
:::
|
2021-12-16 09:57:59 +00:00
|
|
|
|
|
2022-06-23 12:27:50 +00:00
|
|
|
|
::: contributor line
|
|
|
|
|
:::
|
2022-01-12 06:19:06 +00:00
|
|
|
|
|
|
|
|
|
::: previousNext line
|
2021-12-16 09:57:59 +00:00
|
|
|
|
:::
|