You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I packaged a vue3 class style npm package,and made such running time error. function getSuperSlot(obj) { let curr = Object.getPrototypeOf(obj); //here I don't kown why curr get a null,then it goes wrong while (curr.constructor !== Base) { const slot = getSlot(curr); if (slot) { return slot; } curr = Object.getPrototypeOf(curr); } return null; }
The text was updated successfully, but these errors were encountered:
I packaged a vue3 class style npm package,and made such running time error.
function getSuperSlot(obj) { let curr = Object.getPrototypeOf(obj); //here I don't kown why curr get a null,then it goes wrong while (curr.constructor !== Base) { const slot = getSlot(curr); if (slot) { return slot; } curr = Object.getPrototypeOf(curr); } return null; }
The text was updated successfully, but these errors were encountered: