摘要: Issues checking service aborted - probably out of memory. Check the `memoryLimit` option in the ForkTsCheckerWebpackPlugin configuration.If increasing 阅读全文
posted @ 2022-04-14 18:05 郑州谷多软件 阅读(1145) 评论(0) 推荐(0) 编辑
摘要: 图片: .jpeg格式:image/jpeg .png格式: image/png .gif格式: image/gif 音频: .mp3格式:audio/mpeg 视频: .mp4格式:video/mp4 .m3u8格式:application/x-mpegURL .mov格式:video/x-ms- 阅读全文
posted @ 2022-04-09 09:41 郑州谷多软件 阅读(841) 评论(0) 推荐(0) 编辑
摘要: const nav = (window.navigator as any); if (nav.msSaveOrOpenBlob) { nav.msSaveOrOpenBlob(data, filename); } 阅读全文
posted @ 2022-04-08 19:05 郑州谷多软件 阅读(2500) 评论(0) 推荐(1) 编辑
摘要: https://www.npmjs.com/package/vue3-sketch-ruler/v/1.1.5?activeTab=versions 安装后,发现 这个没有 复制完代码,准备运行,发现缺少 vue-demi 感觉vue2整的不彻底 ,没办法,yarn add vue-demi <te 阅读全文
posted @ 2022-04-06 11:23 郑州谷多软件 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 最近使用vue ui创建了一个vue3+typescript项目,需要配置代码格式化和git提交信息规范。 使用vue UI创建的时候,使用eslint 选择项目总是错误。搞得一头雾水,没办法单独添加ESlint Vue3的开发插件使用了尤大推荐的Volar,Volar插件中没有Eslint和Pre 阅读全文
posted @ 2022-03-18 14:22 郑州谷多软件 阅读(967) 评论(0) 推荐(0) 编辑
摘要: 1、启用了变量语法校验,多类型可以加上问好 2、安装方式 vue add typescript 3、Ucc clasee-style component syntax?(是否使用class风格的组件语法,我不习惯) 选择NO,一起他一路yes 4、对象的定义,直接是interface 对象名称{对象 阅读全文
posted @ 2022-02-28 19:56 郑州谷多软件 阅读(282) 评论(0) 推荐(0) 编辑
摘要: node版本对应的node-sass node-sass与sass-loader版本匹配 参见如上文章解决: 先卸载:npm uninstall sass-loadernpm uninstall node-sass -D12再安装使用cnpm安装,我用npm报错了cnpm install sass- 阅读全文
posted @ 2022-02-25 09:40 郑州谷多软件 阅读(39) 评论(2) 推荐(0) 编辑
摘要: <a href="http://www.baidu.com" target="_blank" @click="afun($event)">百度</a> <a href="https://www.taobao.com" target="_blank" @click.prevent="dothis">淘 阅读全文
posted @ 2022-02-24 10:03 郑州谷多软件 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-02-24 09:43 郑州谷多软件 阅读(68) 评论(0) 推荐(0) 编辑
摘要: import * as xxx from 'xxx' 会将 "xxx" 中所有 export 导出的内容组合成一个对象返回(或import * as obj from 'xx' 这种写法是把所有的输出包裹到obj对象里); eg: xxx里中: export function test(){ ret 阅读全文
posted @ 2021-11-22 15:48 郑州谷多软件 阅读(223) 评论(0) 推荐(0) 编辑