chore: use computed
This commit is contained in:
parent
9ee1b5f30a
commit
b66f4ebba1
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ const type = $computed<ModalTypes>(() => {
|
|||
return props.preferType!;
|
||||
}
|
||||
});
|
||||
const isEnableBgTransparent = props.transparentBg && (type === 'popup');
|
||||
const isEnableBgTransparent = $computed(() => props.transparentBg && (type === 'popup'));
|
||||
let transitionName = $computed((() =>
|
||||
defaultStore.state.animation
|
||||
? useSendAnime
|
||||
|
|
Loading…
Reference in a new issue