随笔分类 - TypeScript
【TypeScript】Element 组件导入在 TypeScript 5 报错:模块 ““element-plus““ 没有导出的成员。。。
摘要:## 报错现象  ## 解决方法 typescript 5.0版本升级,使用了 `compilerOptions.modu
【TypeScript】document.body.style TS 报错 Cannot assign to 'style' because it is a read-only property.ts(2540)
摘要:报错信息 解决方法 style对象提供了一个cssText属性,支持设置多种CSS样式: document.body.style.cssText = `width:${targetX}px; height:${targetY}px; transform: scale(${scaleRatio}) t