Jiaxun Li
Jiaxun Li
@linjiajian999 如果我在 el-dialog 中使用了 el-tooltip,你的辅助指令也能显示加了 `append-to-body="false"` 的 tooltip 吗
> > @linjiajian999 如果我在 el-dialog 中使用了 el-tooltip,你的辅助指令也能显示加了 `append-to-body="false"` 的 tooltip 吗 > > @Leecason 老哥是不是 艾特 错人了 对不起~😄
@linjiayu2012 如果我在 el-dialog 中使用了 el-tooltip,你的辅助指令也能显示加了 `append-to-body="false" ` 的 tooltip 吗
I recently made this editor hope helpful https://github.com/Leecason/element-tiptap
`RoughAnnotationConfig` should be the common properties, and those `arrow` only properties maybe should be wrapped in `arrowOptions` ?
```js function myNew(fn, ...args) { let obj = Object.create(fn.prototype); // 相当于 obj.__proto__ = fn.prototype let result = fn.apply(obj, args); // 执行构造方法, 绑定新 this // 如果构造方法 return 了一个对象,那么就返回该对象,否则返回创建的新对象 return Object.prototype.toString.call(result) ===...
```js function throttle (func, wait) { let prev = 0; return function (...args) { const now = Date.now(); const context = this; if (now - prev > wait) { func.apply(context,...
需要将 lineHeight 也加入 extensions 里面哈
Is that how you use it ? `new Table({ resizable: true })`
确实有一点瑕疵,可以用 cmd + enter 跳到代码块下方。你可以先在上下加两个空行,在中间空行插入代码块。