Skip to content

Commit

Permalink
fix(VsDrawer): fix computing order of styleSet (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
seaneez authored Jun 10, 2024
1 parent 98dbf9b commit 3329bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vlossom/src/components/vs-drawer/VsDrawer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ export default defineComponent({
const computedStyleSet: ComputedRef<{ [key: string]: string }> = computed(() => {
return {
...drawerStyleSet.value,
...positionStyle.value,
...drawerStyleSet.value,
...sizeStyle.value,
};
});
Expand Down

0 comments on commit 3329bfd

Please sign in to comment.