Files
layui/example/docs/zh-CN/components/container.md
2022-01-12 14:19:06 +08:00

988 B

::: anchor :::

::: title 普通容器 :::

::: demo

<script> import { ref } from 'vue' export default { setup() { return { } } } </script> <style> .container-demo { width:100%; height: 300px; background: #79C48C; border-radius: 2px; } </style>

:::

::: title 流式容器 :::

::: demo

<script> import { ref } from 'vue' export default { setup() { return { } } } </script> <style> .container-demo { width:100%; height: 300px; background: #79C48C; } </style>

:::

::: title 容器属性 :::

::: table

属性 描述 可选值
fluid 流模式 true false

:::

::: comment :::

::: previousNext container :::