mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-08 07:31:09 +08:00
chore: tinymce主题
This commit is contained in:
@@ -95,11 +95,15 @@ const containerWidth = computed(() => {
|
||||
});
|
||||
|
||||
const skinName = computed(() => {
|
||||
return preferences.theme.mode === 'light' ? 'oxide' : 'oxide-dark';
|
||||
const theme =
|
||||
preferences.theme.mode === 'auto' ? 'light' : preferences.theme.mode;
|
||||
return theme === 'light' ? 'oxide' : 'oxide-dark';
|
||||
});
|
||||
|
||||
const contentCss = computed(() => {
|
||||
return preferences.theme.mode === 'light' ? 'default' : 'dark';
|
||||
const theme =
|
||||
preferences.theme.mode === 'auto' ? 'light' : preferences.theme.mode;
|
||||
return theme === 'light' ? 'default' : 'dark';
|
||||
});
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user