ruoyi-plus-soybean/src/components/common/DarkModeContainer.vue

11 lines
250 B
Vue
Raw Normal View History

2022-01-08 20:49:21 +08:00
<template>
<div
class="bg-white text-[#333639] dark:bg-[#18181c] dark:text-white dark:text-opacity-82 transition-all duration-300 ease-in-out"
2022-01-08 20:49:21 +08:00
>
<slot></slot>
</div>
</template>
<script setup lang="ts"></script>
<style scoped></style>