@@ -223,7 +225,6 @@ export default {
const route = useRoute();
const router = useRouter();
const locale = ref("zh_CN");
- const isDark = ref(false);
const locales = [
{ name: "zh_CN", locale: zh_CN, merge: true },
{ name: "en_US", locale: en_US, merge: true },
@@ -268,14 +269,6 @@ export default {
import.meta.env.LAYUI_VUE_VERSION
)
- watch(isDark, () => {
- if (isDark.value) {
- theme.value = "dark";
- } else {
- theme.value = "light";
- }
- });
-
watch(
() => route.path,
(val) => {
@@ -292,7 +285,6 @@ export default {
locale.value = lang;
};
- provide("isDark",isDark);
provide("theme",theme);
provide('LayuiVueVersion', layuiVueVersion);
@@ -301,7 +293,6 @@ export default {
menus,
theme,
locale,
- isDark,
locales,
currentPath,
handleClick,
diff --git a/example/src/view/index.vue b/example/src/view/index.vue
index fe47ef1b..f404a706 100644
--- a/example/src/view/index.vue
+++ b/example/src/view/index.vue
@@ -18,7 +18,7 @@
- {{ isDark ? 'Turn Off' : 'Turn On'}}
+ {{ theme === 'dark' ? 'Turn Off' : 'Turn On'}}
@@ -115,11 +115,9 @@ export default {
setup() {
const { t } = useI18n();
const layuiVueVersion = inject('LayuiVueVersion')
- const isDark = inject("isDark");
const theme = inject("theme");
const changeTheme = () => {
- isDark.value = !isDark.value;
if(theme.value === 'dark') {
theme.value = 'light';
} else {
@@ -129,7 +127,6 @@ export default {
return {
t,
- isDark,
theme,
changeTheme,
layuiVueVersion
diff --git a/src/component/empty/index.vue b/src/component/empty/index.vue
index c923353e..7ae14d5f 100644
--- a/src/component/empty/index.vue
+++ b/src/component/empty/index.vue
@@ -28,7 +28,7 @@ const props = withDefaults(defineProps(), {
{{ description }}
+
+