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

105 lines
1.7 KiB
Markdown
Raw Normal View History

::: anchor
:::
2022-02-05 21:20:07 +00:00
::: title 基本介绍
:::
::: describe 当页面上的操作命令过多时,用此组件可以收纳操作元素。
:::
2021-10-25 17:13:23 +00:00
::: title 基础使用
2021-10-19 14:28:44 +00:00
:::
2021-10-06 15:22:30 +00:00
::: demo
<template>
2021-10-06 18:03:35 +00:00
<lay-dropdown>
2021-10-26 18:04:47 +00:00
<lay-button type="primary">下拉菜单</lay-button>
2021-10-06 18:03:35 +00:00
<template #content>
<lay-dropdown-item>选项一</lay-dropdown-item>
<lay-dropdown-item>选项二</lay-dropdown-item>
<lay-dropdown-item>选项三</lay-dropdown-item>
2021-10-06 18:03:35 +00:00
</template>
</lay-dropdown>
</template>
<script>
import { ref } from 'vue'
export default {
setup() {
return {
}
}
}
</script>
:::
2021-10-25 17:13:23 +00:00
::: title 触发方式
2021-10-19 14:28:44 +00:00
:::
2021-10-06 18:03:35 +00:00
::: demo
<template>
<lay-dropdown trigger="hover">
2021-10-06 18:03:35 +00:00
<lay-button>Hover 触发</lay-button>
<template #content>
<lay-dropdown-item>选项一</lay-dropdown-item>
<lay-dropdown-item>选项二</lay-dropdown-item>
<lay-dropdown-item>选项三</lay-dropdown-item>
2021-10-06 18:03:35 +00:00
</template>
</lay-dropdown>
&nbsp;&nbsp;
<lay-dropdown>
<lay-button>Click 触发</lay-button>
<template #content>
<lay-dropdown-item>选项一</lay-dropdown-item>
<lay-dropdown-item>选项二</lay-dropdown-item>
<lay-dropdown-item>选项三</lay-dropdown-item>
2021-10-06 18:03:35 +00:00
</template>
</lay-dropdown>
2021-10-06 15:22:30 +00:00
</template>
<script>
import { ref } from 'vue'
export default {
setup() {
return {
}
}
}
</script>
2021-10-07 16:17:34 +00:00
:::
2022-01-09 17:17:03 +00:00
::: title Dropdown 属性
2021-10-13 02:19:38 +00:00
:::
2021-10-12 10:00:09 +00:00
2021-11-07 07:55:08 +00:00
::: table
| 属性 | 描述 | 可选值 |
| ------- | -------- | --------------- |
| trigger | 触发方式 | `click` `hover` |
2021-11-07 07:55:08 +00:00
:::
2022-01-09 17:17:03 +00:00
::: title Dropdown 插槽
:::
2021-11-07 07:55:08 +00:00
::: table
| 插槽 | 描述 | 可选值 |
| ------- | -------- | ------ |
| content | 下拉内容 | -- |
2021-11-07 07:55:08 +00:00
2021-11-07 07:56:24 +00:00
:::
2021-12-16 09:57:59 +00:00
::: comment
2022-01-12 06:19:06 +00:00
:::
::: previousNext dropdown
2021-12-16 09:57:59 +00:00
:::