pshao
pshao
### Existing Component 是 ### Component Name el-table ### Description vue2.6 是正常的, 升级到2.7后 就报标题的错误了 const columns = [ { label: '客服名称', prop: 'name', }, { label: '联系方式', render: (h: any,...
// main.vue // crop.ts import { createApp } from 'vue'; import Crop from './main.vue'; import { IFileType } from './typings/interface'; class CropService `{` private static instance: any; init({ file, toBlob,...
i am copy the example code ,but not work
如题 文档资料有点少
## 动画相关 ``` //html //css .btn { width: 100px; height: 20px; background: coral; border: 1px solid #5e6d82; } .change { width: 0; height: 20px; background: #2D93CA; transition: all 2s; }...
## 1 哪些操作会引起内存泄漏,如何发现 ### 一些常见的内存泄露代码 ``` // 意外的全局变量 functuon foo () { bar = 1} //函数里直接对未定义的变量赋值,导致变量存在顶部Window中,内存垃圾无法回收 //闭包变量被引用导致无法被回收 function fun2() { var obj = { a: 2 } return obj; }...