摘要: ajax: axios:http://www.axios-js.com/ 阅读全文
posted @ 2020-08-25 11:56 Kobe_bk 阅读(139) 评论(0) 推荐(0) 编辑
摘要: es6:https://es6.ruanyifeng.com/#README 阅读全文
posted @ 2020-08-25 11:55 Kobe_bk 阅读(117) 评论(0) 推荐(0) 编辑
摘要: ES6教程:https://es6.ruanyifeng.com/#docs/intro 数据可视化框架Echarts: https://echarts.apache.org/zh/index.html node中文文档 : http://nodejs.cn/ npm中文文档 : https://w 阅读全文
posted @ 2020-08-25 11:50 Kobe_bk 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 1.vue官网: https://cn.vuejs.org/ 2.vue-cli(vue脚手架,基于webpack,用于快速构建vue项目):https://cli.vuejs.org/zh/guide/ 3.vuex(vue官方提供的状态管理机制): https://vuex.vuejs.org/ 阅读全文
posted @ 2020-08-25 11:31 Kobe_bk 阅读(17608) 评论(0) 推荐(0) 编辑
摘要: PC端 常用组件库: Ant Design Pro(蚂蚁金服 UI组件库): https://www.antdv.com/components/button-cn/ Ant Design Pro(框架项目说明) : https://pro.antdv.com/docs/changelog eleme 阅读全文
posted @ 2020-08-25 11:17 Kobe_bk 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 1.全局安装 webpack: npm install -g webpack 2.安装vue-cli2: npm install -g @vue/cli-init # `vue init` 的运行效果将会跟 `vue-cli@2.x` 相同 vue init webpack my-project 3 阅读全文
posted @ 2020-08-24 11:59 Kobe_bk 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 1.npm run *** 是执行配置在package.json中的脚本,比如: "scripts": { "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js", "start": "np 阅读全文
posted @ 2020-08-21 16:18 Kobe_bk 阅读(2984) 评论(0) 推荐(0) 编辑
摘要: 1. v-bind 功能:绑定变量,可缩写成: 阅读全文
posted @ 2020-08-21 15:08 Kobe_bk 阅读(128) 评论(0) 推荐(0) 编辑
摘要: v-model 的修饰符,一般用于控制数据同步的时机 v-model.trim 自动过滤输入内容最开始 和 最后的 空格,中间的会保留一个空格,多的会被过滤掉 阅读全文
posted @ 2020-08-21 15:04 Kobe_bk 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 微信小程序数据缓存 微信官方文档 介绍链接:https://developers.weixin.qq.com/miniprogram/dev/api/storage/wx.getStorage.html 和浏览器缓存 对比 浏览器: localstorage (除非手动被清除,否则永久保存在本地) 阅读全文
posted @ 2019-09-05 13:24 Kobe_bk 阅读(1242) 评论(0) 推荐(0) 编辑