Tiffiny Jenis
Tiffiny Jenis
These codes work. [yyx990803 on 29 Jan 2021 I just looked into it and it seems Monaco Editor's ESM usage requires pre-bundling the workers:](https://github.com/vitejs/vite/discussions/1791#discussioncomment-320938) ```js { // root of vite.config.js...
hello world 吗?
Could this help? `.prettierrc.js` of mine ```js const packages = require('./package.json').dependencies; const sortedPackages = Object.keys(packages).sort(); module.exports = { printWidth: 120, tabWidth: 2, useTabs: false, semi: true, singleQuote: true, trailingComma: 'all',...
去掉 includes... 如果你需要全局缓存的话. 测试有效. 但是不能定制某个tab满足 "每次切换都刷新". 我还没理解, keep-live中关于 includes的设计. includes的局限是 通过 `Component`的名称进行缓存. 动态组件的每个 key都不一样,因此下面这段代码就不缓存了? ```xml ```
Could this help? `.prettierrc.js` of mine ```js const packages = require('./package.json').dependencies; const sortedPackages = Object.keys(packages).sort(); module.exports = { printWidth: 120, tabWidth: 2, useTabs: false, semi: true, singleQuote: true, trailingComma: 'all',...
I know exact what happened, renderCB is a static method of class `GridStack`.What will happend if we modify it? The last override wins, that why multiple grids will crash. see...
Thanks for your reply, I know the design, that is React wrapper problem. the renderCB should be stateless.
Yes, I read lots of historical codes, that're great works over years. The react wrapper(grid-stack-render-provider) each uses a local map for the widgets in its context, any override will lead...
I 've made a pr to fix this issue.