摘要: <meta name="viewport" content="initial-scale=0.5, maximum-scale=0.5, minimum-scale=0.5, user-scalable=no, viewport-fit=cover"> 阅读全文
posted @ 2020-05-12 21:47 ˉ八月 阅读(134) 评论(0) 推荐(0)
摘要: 之前一直想在样式实现,hover时显示其他div,今天终于找到了,(*^▽^*) .a悬停时显示.b .a:hover .b { display: block; } 阅读全文
posted @ 2018-03-30 17:53 ˉ八月 阅读(270) 评论(0) 推荐(0)
摘要: { //在组件中使用v-for时,必须加key 改为不是必须的 "vetur.validation.template": false, // 使用vscode-icons主题 "workbench.iconTheme": "vscode-icons", // #每次保存的时候将代码按eslint格式 阅读全文
posted @ 2018-01-30 10:14 ˉ八月 阅读(171) 评论(0) 推荐(0)
摘要: 1.发布后把config/index.js 的productionSourceMap: true,改成productionSourceMap: false webpack成功隐藏 阅读全文
posted @ 2017-07-12 18:08 ˉ八月 阅读(244) 评论(0) 推荐(0)
摘要: 1.文件->首选项->设置 2.搜索cssrem-> 点击设置:"cssrem.rootFontSize": 16, 4.emmet 阅读全文
posted @ 2017-07-06 18:51 ˉ八月 阅读(310) 评论(0) 推荐(0)
摘要: 1.将时间戳转换成时间 var formatDate = function(d) { var now = new Date(d); var year = now.getFullYear(); var month = now.getMonth() + 1; var date = now.getDate 阅读全文
posted @ 2017-07-06 17:08 ˉ八月 阅读(3591) 评论(1) 推荐(0)