fix(Toast): failed to update message (#9196)
This commit is contained in:
@@ -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,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user