fix(Popup): legacy removeNode

This commit is contained in:
chenjiahan
2020-08-07 07:17:19 +08:00
parent 5d2cd516ed
commit 34ff811102
2 changed files with 0 additions and 14 deletions
-7
View File
@@ -1,7 +0,0 @@
export function removeNode(el: Node) {
const parent = el.parentNode;
if (parent) {
parent.removeChild(el);
}
}