摘要:
当从git上clone一个完整的项目,npm install等命令一直失败,可以考虑是否是由于nodejs版本太高导致的,需要尝试切换版本。 1、安装node版本管理模块n (需要权限,输入密码) sudo npm install n -g 2、升级/降级 sudo n 14.2.0 //n后面加上 阅读全文
摘要:
问题描述: [Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or 阅读全文
摘要:
在不同平台端使用uni.addInterceptor路由拦截器时会出现小程序和app端端差异: 在小程序模式下获取不到通过tabBar底部点击以及通过<navigator></navigator>标签进行跳转的路由信息。而在app下时没问题的 uni.addInterceptor('switchTa 阅读全文
摘要:
出现问题:Errors compiling template:目前仅支持解构插槽 otherSlotProps,如 v-slot="{ user }" 1.子组件中 test.vue <view > <slot name="other" :user="user"></slot> <slot></sl 阅读全文
摘要:
在使用pnpm install 安装依赖时,报错ERR_PNPM_INVALID_OVERRIDE_SELECTOR Cannot parse the "//" selector in the overrides 这是pnpm在读package.json中的配置时出现的问题,resolutions存 阅读全文
摘要:
出现问题:pages.json解析失败 我这里出现page.json中编译出现问题分析如截图: 因为编译条件// #ifdef APP-PLUS||H5 // #endif中间部分在小程序下不编译,导致逗号在pages数组的最尾部。 当逗号移到如下位置,编译成功。所以在uniapp下,特别留意逗号的 阅读全文
摘要:
Mac下出现问题:zsh:command not found:svn. 解决方案: 终端依次输入以下命令 1. /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 2.brew 阅读全文
摘要:
1.安装 npm install animate.css或yarn add animate.css 2.在main.ts中引入 import 'animate.css/animate.min.css' //引入 3.组件中使用 一定要加入animated,然后使用animate__xxx即可 <di 阅读全文