摘要: nvm list 是查找本电脑上所有的node版本 - nvm list 查看已经安装的版本- nvm list installed 查看已经安装的版本- nvm list available 查看网络可以安装的版本 nvm install 安装最新版本nvm nvm use <version> # 阅读全文
posted @ 2021-03-11 22:14 akzaq 阅读(130) 评论(0) 推荐(0)
摘要: 重复点击导航时,控制台出现不影响功能的报错~~ 错误贴个图 解决: 方案一: router.js文件中添加如下代码 Vue.use(Router); //重复点击导航时,控制台出现不影响功能的报错 const VueRouterPush = Router.prototype.push; Router 阅读全文
posted @ 2021-03-10 01:54 akzaq 阅读(88) 评论(0) 推荐(0)
摘要: 基本使用略过!!! 使用$nextTick()可以将better-scroll(以下简称BS)延迟到下次 DOM 更新循环之后执行。在修改数据之后立即使用它,然后等待 DOM 更新。 this.$nextTick(() => { var scroll = new BScroll(this.$refs 阅读全文
posted @ 2021-03-03 23:11 akzaq 阅读(208) 评论(0) 推荐(0)
摘要: MYSQL常用命令 1.导出整个数据库 mysqldump -u 用户名 -p –default-character-set=latin1 数据库名 > 导出的文件名(数据库默认编码是latin1) mysqldump -u wcnc -p smgp_apps_wcnc > wcnc.sql 2.导 阅读全文
posted @ 2021-02-19 17:04 akzaq 阅读(31) 评论(0) 推荐(0)
摘要: 1.新建本地git仓库 1.1 git init // 初始化版本库1.2 git add . // 添加文件到版本库(只是添加到缓存区),.代表添加文件夹下所有文件 ,*会忽略一部分文件 1.3 git commit -m "first commit" // 把添加的文件提交到版本库,并填写提交备 阅读全文
posted @ 2021-02-19 16:50 akzaq 阅读(18) 评论(0) 推荐(0)
摘要: [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render fun 阅读全文
posted @ 2021-02-16 21:06 akzaq 阅读(21) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/front_endxiaobaia/article/details/105206691 阅读全文
posted @ 2021-02-14 16:09 akzaq 阅读(41) 评论(0) 推荐(0)
摘要: vue swiper5 阅读全文
posted @ 2021-02-14 16:06 akzaq 阅读(83) 评论(0) 推荐(0)