WebCell icon indicating copy to clipboard operation
WebCell copied to clipboard

支持IE11的slot处理和ssr吗

Open chenyulun opened this issue 3 years ago • 2 comments

支持slot低版本和ssr处理吗

chenyulun avatar May 13 '21 06:05 chenyulun

  1. Web Components 官方 polyfill 对 IE 11 <slot /> 的支持貌似还有问题:https://stackoverflow.com/questions/66393616/angular11-webcomponents-polyfills-ie11-nojoy
  2. SSR 的支持我正在研究标准提案:https://web.dev/declarative-shadow-dom/

TechQuery avatar Aug 01 '21 09:08 TechQuery

新标准 ElementInternals 提供了对 <template shadowRootMode="open" /> 的支持,因此 WebCell v3 基于此提供了对 SSR 的组件引擎级支持:

https://github.com/EasyWebApp/WebCell/blob/619146c9e2edb96d80e7086e5a4362b6c0adb25c/source/WebCell.tsx#L44-L55

但还需要类似 Next.js 这样的开发框架来输出符合新标准的 HTML 代码。

TechQuery avatar Jan 09 '24 17:01 TechQuery