mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[bugfix] Toast: redundant instance when sync called multil times
This commit is contained in:
parent
226fccaa53
commit
52448c3db8
@ -1,6 +1,6 @@
|
|||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import VueToast from './Toast';
|
import VueToast from './Toast';
|
||||||
import { isObj, isServer, isInDocument } from '../utils';
|
import { isObj, isServer } from '../utils';
|
||||||
|
|
||||||
const defaultOptions = {
|
const defaultOptions = {
|
||||||
type: 'text',
|
type: 'text',
|
||||||
@ -28,7 +28,7 @@ function createInstance() {
|
|||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!queue.length || multiple || !isInDocument(queue[0].$el)) {
|
if (!queue.length || multiple) {
|
||||||
const toast = new (Vue.extend(VueToast))({
|
const toast = new (Vue.extend(VueToast))({
|
||||||
el: document.createElement('div')
|
el: document.createElement('div')
|
||||||
});
|
});
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
|
import Vue from 'vue';
|
||||||
import Toast from '..';
|
import Toast from '..';
|
||||||
|
import ToastVue from '../Toast';
|
||||||
import { transitionStub, later } from '../../../test/utils';
|
import { transitionStub, later } from '../../../test/utils';
|
||||||
|
|
||||||
transitionStub();
|
transitionStub();
|
||||||
@ -86,3 +88,8 @@ test('onClose callback', () => {
|
|||||||
Toast.allowMultiple(false);
|
Toast.allowMultiple(false);
|
||||||
expect(onClose).toHaveBeenCalledTimes(1);
|
expect(onClose).toHaveBeenCalledTimes(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('register component', () => {
|
||||||
|
Vue.use(Toast);
|
||||||
|
expect(Vue.component(ToastVue.name)).toBeTruthy();
|
||||||
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user