摘要: 表达式全集 常用正则表达式 阅读全文
posted @ 2018-04-26 16:47 BuildYourDream 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 准备工作:1.vue-cli 搭建脚手架 2.在components文件夹下 新建一个Count.vue文件 3.新建store.js 文件, 如下图 4.点击时 需要改变store状态里的 count 值: 如下图: 5.点击增加时: 然后... 阅读全文
posted @ 2018-03-13 17:51 BuildYourDream 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1.打开你生成的项目目录中的bulid—>webpack.base.conf.js删除如下代码: { test: /\.(js|vue)$/, loader: 'eslint-loader', enforce: 'pre', include: [resolve('src'), resolve('te 阅读全文
posted @ 2018-03-12 16:36 BuildYourDream 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: 1.在不知道 父元素和自身元素宽高的情况下,实现垂直居中的代码如下: .father{ position:relative; } .child{ position: absolute; top: 50%; transform: translateY(-50%); } 阅读全文
posted @ 2018-03-05 09:39 BuildYourDream 阅读(73) 评论(0) 推荐(0) 编辑