上一页 1 ··· 57 58 59 60 61
摘要: ,,突然感觉人生又少了一年。。同时心疼我的100块钱.. 阅读全文
posted @ 2017-12-18 20:17 hh9515 阅读(139) 评论(0) 推荐(0)
摘要: 双12到了,各大电商平台也开启了促销大战,最近在考虑买一台笔记本电脑用,昨天看到jd上的11寸macbook air又上架了,就毫不犹豫的下手了 买之前看了一些评论,有人说笔记本是二手翻新的,还有人说jd的电商专供笔记本相比自己官网购买的版本屏幕严重泛白,记得大概三年前的时候在京东买过一部诺基亚X, 阅读全文
posted @ 2017-12-15 13:16 hh9515 阅读(6030) 评论(0) 推荐(0)
摘要: npm install vuex --save ....../vuex/store.js: import Vuex from 'vuex'; import Vue from 'vue'; Vue.use(vuex); const state = { count:1} const mutations 阅读全文
posted @ 2017-12-12 11:08 hh9515 阅读(167) 评论(0) 推荐(0)
摘要: 提交与查看状态 git init //当前目录下生成.git仓库 git add . /git add xxx.txt ..... 将文件添加到暂存区 git commit -m "modified" 把暂存区的内容提交到当前分支 git status 查看工作区(working tree)的状态 阅读全文
posted @ 2017-12-09 21:17 hh9515 阅读(190) 评论(0) 推荐(0)
摘要: 1.入门 webpack网站:https://doc.webpack-china.org/ npm install webpack -g 但是官方不推荐,这会将项目中的webpack锁定到指定版本,并且在使用不同webpack版本的项目中,可能会导致构建项目失效。 npm init -y npm i 阅读全文
posted @ 2017-12-07 16:07 hh9515 阅读(237) 评论(0) 推荐(0)
摘要: mysql -u root -p -u:username -p:password 1.库级操作: show databases; 显示所有数据库 create database a; drop database a; //从删库到跑路 2.表操作: use a; create table users 阅读全文
posted @ 2017-12-05 02:35 hh9515 阅读(299) 评论(0) 推荐(0)
上一页 1 ··· 57 58 59 60 61