
前端
文章平均质量分 62
Seeeeeeeeeeeee
一个没有感情的coder
展开
-
跟CoderWhy老师学习Vue的笔记
Vuegit仓库地址:https://gitee.com/codekitty_lee/vue-studyB站视频地址:https://www.bilibili.com/video/BV15741177EhVue的生命周期生命周期:一个事物从诞生到消亡的整个过程Vue的生命周期函数beforeCreate 创建前created 创建后beforeMount 挂载前mounted 挂载后beforeUpdate 更新前updated 更新后beforeDestory 销毁前de原创 2021-10-31 22:42:00 · 1501 阅读 · 0 评论 -
cnpm安装
$ npm install -g cnpm --registry=https://registry.npm.taobao.org//安装完后查看版本$ cnpm -v//成功后会有版本信息返回,不成功有可能是node版本低成功安装后,直接用cnpm代替之前的npm安装模块$ cnpm install [name]同步模块直接通过 sync 命令马上同步一个模块, 只有 cnpm 命令行才有此功能:$ cnpm sync connect其它命令支持 npm 除了 pu原创 2021-08-06 20:30:33 · 622 阅读 · 0 评论