摘要: windows 下默认的滚动条样式巨丑,项目中又有比较多地方会显示滚动条, 故回头翻了一下CSS3, 还真能不用插件实现自定义滚动条的样式,正合我意 代码如下: 具体含义及其他设置项: :: webkit scrollbar 滚动条整体部分 :: webkit scrollbar thumb 滚动条 阅读全文
posted @ 2019-08-07 11:06 193557749 阅读(194) 评论(0) 推荐(0) 编辑
摘要: js // actions:方法 异步 actions: { fnac1(context) { // context就是仓库 // 异步代码 setTimeout(() = { const numNew = 200 // 在异步有结果的位置,把结果提交给mutations的方法 context.co 阅读全文
posted @ 2019-08-07 00:29 193557749 阅读(179) 评论(0) 推荐(0) 编辑
摘要: html {{$store.state.count}} js computed: { count() { return this.$store.state.count; }, js computed:{ ...mapState(["count"]) } // 视图中{{count}} js gett 阅读全文
posted @ 2019-08-07 00:27 193557749 阅读(186) 评论(0) 推荐(0) 编辑