mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(Toast): failed to update message (#9196)
This commit is contained in:
parent
3a1c8a9d16
commit
cf86a23c51
@ -1,4 +1,4 @@
|
|||||||
import { ref, App, TeleportProps, getCurrentInstance } from 'vue';
|
import { ref, App, TeleportProps, getCurrentInstance, watch } from 'vue';
|
||||||
import {
|
import {
|
||||||
extend,
|
extend,
|
||||||
isObject,
|
isObject,
|
||||||
@ -87,14 +87,14 @@ function createInstance() {
|
|||||||
onClosed,
|
onClosed,
|
||||||
'onUpdate:show': toggle,
|
'onUpdate:show': toggle,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (message.value) {
|
|
||||||
attrs.message = message.value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return <VanToast {...state} {...attrs} />;
|
return <VanToast {...state} {...attrs} />;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// support dynamic modification of message
|
||||||
|
watch(message, (val) => {
|
||||||
|
state.message = val;
|
||||||
|
});
|
||||||
|
|
||||||
// rewrite render function
|
// rewrite render function
|
||||||
(getCurrentInstance() as any).render = render;
|
(getCurrentInstance() as any).render = render;
|
||||||
|
|
||||||
|
@ -3,7 +3,10 @@ import { extend } from '../utils';
|
|||||||
import { useExpose } from '../composables/use-expose';
|
import { useExpose } from '../composables/use-expose';
|
||||||
|
|
||||||
export function usePopupState() {
|
export function usePopupState() {
|
||||||
const state = reactive({
|
const state = reactive<{
|
||||||
|
show: boolean;
|
||||||
|
[key: string]: any;
|
||||||
|
}>({
|
||||||
show: false,
|
show: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user