layui/example/docs/zh-CN/guide/dark.md

20 lines
377 B
Markdown
Raw Normal View History

2022-03-30 13:16:15 +00:00
::: title 夜间模式
:::
2022-03-31 18:09:42 +00:00
::: describe 默认情况下, 网站主题为日间模式。
2022-03-30 13:16:15 +00:00
:::
2022-03-31 18:09:42 +00:00
::: describe 若启用夜间模式, 使用 "全局配置" 组件配合 theme 属性, 设置为 `dark` 值。
:::
```vue
2022-03-30 13:16:15 +00:00
<template>
<lay-config-provider :theme="theme">
<App />
</lay-config-provider>
</template>
<script setup>
const theme = ref('dark')
</script>
```