plq

Results 6 comments of plq

```javascript function largestValues(root) { if (!root) return []; const queue = [root]; const result = []; while(queue.length > 0) { // 一层一层遍历 let len = queue.length; let max = -Infinity;...

初步排查到是因为translate3d和scale3d导致的

这个this类型有解决办法吗

> This is to do with column resizing: > > https://github.com/ueberdosis/tiptap/blob/ce141c2e69ddc47c29658b9a6ad4ee16607774bb/packages/extension-table/src/table.ts#L434 > > > One workaround mentioned has been to render the editor in editable mode and then turn off...