From 5ac48a17f5b7cb037ace658232ebc68e47198cc9 Mon Sep 17 00:00:00 2001 From: 07akioni <07akioni2@gmail.com> Date: Tue, 12 Jan 2021 17:08:23 +0800 Subject: [PATCH] fix(layout): theme not working --- src/layout/src/Layout.vue | 8 ++++---- vue3.md | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/layout/src/Layout.vue b/src/layout/src/Layout.vue index 3eb801a6e..90dee0fc3 100644 --- a/src/layout/src/Layout.vue +++ b/src/layout/src/Layout.vue @@ -54,13 +54,13 @@ export default defineComponent({ }, setup (props) { const themeRef = useTheme('Layout', 'Layout', style, layoutLight, props) - const { - common: { cubicBezierEaseInOut }, - self: { color, textColor } - } = themeRef.value return { mergedTheme: themeRef, cssVars: computed(() => { + const { + common: { cubicBezierEaseInOut }, + self: { color, textColor } + } = themeRef.value return { '--bezier': cubicBezierEaseInOut, '--color': color, diff --git a/vue3.md b/vue3.md index a276c6e58..51d87a7d0 100644 --- a/vue3.md +++ b/vue3.md @@ -397,6 +397,7 @@ - [x] vooks `useNow` - [x] treemate activePath includeGroup: false - [ ] select menu multiple, when show=true, checkmark transiton not working + - [ ] menu + dropdown collapsed 时候 menu item 不更新 ## Info