摘要: NPM的全称是Node Package Manager,是随同NodeJS一起安装的包管理和分发工具,它很方便让JavaScript开发者下载、安装、上传以及管理已经安装的包。 npm常用的命令 1、npm install express:安装Node模块 安装完毕后会产生一个node_module 阅读全文
posted @ 2020-04-06 22:37 web小超 阅读(217) 评论(0) 推荐(0) 编辑
摘要: npm install -g create-react-app 全局安装react框架 npx create-react-app my-app 这样不用全局安装react框架 cnpm init react-app my-app 这样不用全局安装react框架 create-react-app my 阅读全文
posted @ 2020-04-05 23:48 web小超 阅读(126) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta name="viewport" content="width=device 阅读全文
posted @ 2020-02-20 20:26 web小超 阅读(760) 评论(0) 推荐(0) 编辑
摘要: GitCDM操作指令: Git init:初始化仓库 Git clone:克隆仓库(可以是远程仓库也可以是自己的仓库) Git log:Git的操作日志 退出日志:英文状态 q Git add:提交文件 用法:git add 文件名 git add * git commit -m "提交说明" -m 阅读全文
posted @ 2019-12-27 09:53 web小超 阅读(136) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="recommend"> <!-- --> <van-loading v-show="isshow" /> <van-list v-model="loading" :finished="finished" finished-text="没有更多了" @lo 阅读全文
posted @ 2019-12-26 23:32 web小超 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 1 》 npm install -g @vue/cli 安装 vue cli3 2 》 npm uninstall vue-cli -g 卸载 vue cli3 3 》 vue create 项目名称 直接命令行创建 接下来会问你选择那种配置(会显示所有保存过的配置,首次使用只会显示 default 阅读全文
posted @ 2019-12-26 22:18 web小超 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-12-26 11:13 web小超 阅读(180) 评论(0) 推荐(0) 编辑
摘要: git init git add文件名:将文件提交到缓存区 Git commit -m“说明内容” 将缓存区的文件提交到仓库 -m后面带提交的说明内容 $ git config --global user.name "用户名" $ git config --global user.email "xx 阅读全文
posted @ 2019-12-26 09:05 web小超 阅读(97) 评论(0) 推荐(0) 编辑
摘要: <style scoped> .swiper-pagination-bullets >>> .swiper-pagination-bullet-active { background: orange; } /* >>> 在vue中有穿透的作用 */ </style> 阅读全文
posted @ 2019-12-24 17:36 web小超 阅读(765) 评论(0) 推荐(0) 编辑
摘要: <script> import { mapState } from "vuex"; export default { data() { return { PlayList: "" }; }, computed: { ...mapState(["Playname"]) //获取vuex中某一条数据 } 阅读全文
posted @ 2019-12-24 17:31 web小超 阅读(723) 评论(0) 推荐(0) 编辑