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

47 lines
564 B
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
:::
2022-02-01 13:48:39 +00:00
::: demo 使用 `lay-panel` 标签, 创建面板组件
2021-09-26 22:59:01 +00:00
<template>
<lay-panel><div style="padding: 30px;">面板</div></lay-panel>
</template>
<script>
import { ref } from 'vue'
export default {
setup() {
return {
}
}
}
</script>
:::
2022-01-09 17:17:03 +00:00
::: title Panel 插槽
:::
2021-11-07 07:55:08 +00:00
::: table
| 插槽 | 描述 | 可选值 |
| ------- | -------- | ------ |
| default | 默认插槽 | -- |
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-03-29 23:44:37 +00:00
2022-01-12 06:19:06 +00:00
::: previousNext panel
2021-12-16 09:57:59 +00:00
:::