fix(Toast): failed to update message (#9196)

This commit is contained in:
neverland
2021-08-06 18:58:07 +08:00
committed by GitHub
parent 3a1c8a9d16
commit cf86a23c51
2 changed files with 10 additions and 7 deletions
+4 -1
View File
@@ -3,7 +3,10 @@ import { extend } from '../utils';
import { useExpose } from '../composables/use-expose';
export function usePopupState() {
const state = reactive({
const state = reactive<{
show: boolean;
[key: string]: any;
}>({
show: false,
});