摘要:
属性描述符的结构 在定义对象, 定义属性时, 属性描述符一共有6个 value: 设置属性的值, 默认值为undefined writable: 设置属性值是否可写, 默认值为true enumerable: 设置属性是否可枚举, 即是否允许使用 for/in 语句或 Object.keys() 函 阅读全文
摘要:
-webkit-overflow-scrolling:touch -webkit-overflow-scrolling 属性控制元素在移动设备上是否使用滚动回弹效果.auto: 使用普通滚动, 当手指从触摸屏上移开,滚动会立即停止。touch: 使用具有回弹效果的滚动, 当手指从触摸屏上移开,内容会 阅读全文
摘要:
一, 安装react脚手架 1. 全局安装脚手架 npm install -g create-react-app 2. 创建我们react项目 npx create-react-app shen-react(项目名不能有大写) 3. 运行 cd shen-react npm start 二. 安装r 阅读全文
摘要:
一, 配置BaseUrl /** * { * dev: '开发环境配置信息', * test: '测试环境配置信息', * prod: '线上环境配置信息' * } */ function conf (base = {}) { if (process.env.NODE_ENV 'production 阅读全文
摘要:
一, 安装 npm install vue-awesome-swiper@2.6.7 --save-dev 注意版本, 高版本不兼容IE(即使使用babel-polyfill 打包也不行) 阅读全文
摘要:
一, 安装 npm install vue-lazyload --save-dev 二, main.js 引入文件 import VueLazyload from 'vue-lazyload' Vue.use(VueLazyload, { error: require('./assets/image 阅读全文
摘要:
一, vue/cli4.x 1. 安装 首先卸载之前的版本 npm uninstall vue-cli -g 安装命令: npm install -g @vue/cli 2.创建项目 vue-cli2.x vue init webpack 项目名称 vue/cli4.x vue create 项目名 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
摘要:
int 和 Integer 的区别 1、Integer 是 int 的包装类,int 则是 java 的一种基本数据类型 2、Integer 变量必须实例化后才能使用,而 int 变量不需要 3、Integer 实际是对象的引用,当 new 一个 Integer 时。实际上是生成一个指针指向对象;而 阅读全文