layui/example/docs/zh-CN/guide/dark.md
2022-03-30 21:16:15 +08:00

318 B

::: title 夜间模式 :::

::: describe 默认情况下, 网站主题为日间模式。若需启用深夜模式, 使用 config-provider 组件。 :::

<template>
    <lay-config-provider :theme="theme">
        <App />
    </lay-config-provider>
</template>

<script setup>
const theme = ref('dark')
</script>