我發現在定義componentData時使用attachTo: createContainer()可以解決問題。同時,每當wrapper被重新定義時,也必須重新定義。
const createContainer = (tag = "div") => { const container = document.createElement(tag); document.body.appendChild(container); return container; }; const componentData = { attachTo: createContainer(), store, localVue }; const wrapper = shallowMount(Index, componentData);
我發現在定義componentData時使用attachTo: createContainer()可以解決問題。同時,每當wrapper被重新定義時,也必須重新定義。