layui/example/docs/zh-CN/components/line.md

44 lines
813 B
Markdown
Raw Normal View History

2021-09-27 14:01:22 +00:00
::: demo
<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/>
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
2021-10-25 17:13:23 +00:00
::: title 分割属性
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
2021-10-25 17:14:17 +00:00
| Name | Description | Accepted Values |
| ----- | ----------- | --------------------------------------------- |
| theme | 主题 | `orange` `green` `cyan` `blue` `black` `gray` |
2021-11-07 07:55:08 +00:00
2021-11-07 07:56:24 +00:00
:::