Fix bug of c3ae6f3a4
This commit is contained in:
parent
c3ae6f3a4a
commit
ab692cfa3d
|
@ -146,13 +146,11 @@ export class Autocomplete {
|
||||||
|
|
||||||
this.opening = false;
|
this.opening = false;
|
||||||
} else {
|
} else {
|
||||||
const MkAutocomplete = await import('@/components/autocomplete.vue');
|
|
||||||
|
|
||||||
const _x = ref(x);
|
const _x = ref(x);
|
||||||
const _y = ref(y);
|
const _y = ref(y);
|
||||||
const _q = ref(q);
|
const _q = ref(q);
|
||||||
|
|
||||||
const { dispose } = popup(MkAutocomplete, {
|
const { dispose } = await popup(import('@/components/autocomplete.vue'), {
|
||||||
textarea: this.textarea,
|
textarea: this.textarea,
|
||||||
close: this.close,
|
close: this.close,
|
||||||
type: type,
|
type: type,
|
||||||
|
|
Loading…
Reference in New Issue