feat: 增加 node#remove

This commit is contained in:
lihao.ylh 2022-01-10 14:40:27 +08:00
parent 7df2d153f2
commit befc669f99

View File

@ -379,4 +379,11 @@ export default class Node {
hover(flag = true) {
this[nodeSymbol].hover(flag);
}
/**
*
*/
remove() {
this[nodeSymbol].remove();
}
}