2023年1月3日
摘要: 参考tsup.config.ts配置 import type { Options } from 'tsup' export const tsup: Options = { splitting: false, sourcemap: false, clean: true, format: ['cjs', 阅读全文
posted @ 2023-01-03 09:41 是庸 阅读(1980) 评论(0) 推荐(0) 编辑
  2021年6月23日
摘要: Flutter 环境配置遇到的一些坑 1. flutter doctor检测到studio未安装 无关紧要 2. flutter 项目无法启动提示pom包无法下载 开启FQ,然后在/android/gradle.properties内添加如下代码 systemProp.https.proxyPort 阅读全文
posted @ 2021-06-23 13:06 是庸 阅读(119) 评论(0) 推荐(0) 编辑
  2021年6月9日
摘要: class Jquery { constructor(selector) { const result = document.querySelectorAll(selector) const length = result.length for(let i = 0; i < length; i++) 阅读全文
posted @ 2021-06-09 13:15 是庸 阅读(34) 评论(0) 推荐(0) 编辑
  2021年4月29日
摘要: 仔细查看你的vue-echarts版本,如果是6.0.0版本,仔细阅读文档,6.0.0版本已经将props参数options改名为option 阅读全文
posted @ 2021-04-29 09:56 是庸 阅读(456) 评论(0) 推荐(0) 编辑
  2020年4月20日
摘要: react初识 安装 使用npm Npm install react react-dom –S 单独安装react框架及react-dom Npm install create-react-app –g 全局安装react脚手架,可以直接生成react开发环境 (当安装的是一个工具,无需打包到最终项 阅读全文
posted @ 2020-04-20 20:05 是庸 阅读(101) 评论(0) 推荐(0) 编辑