纯css更改radio和checkbox的样式

先直接上代码: input[type='checkbox']{ background-color:rgba(0,0,0,0); -webkit-appearance : none ; border:1px solid black; width:2rem; height:2rem; border-radius: 50%; outline: none; } input[type='checkbox']:checked{ -webkit-appearance : none ; background: url("yourbg") no-repeat center center; background-size:100%; outline: none; border:none;…

VUE-X数据仓库状态管理器

VUEX 是一个数据仓库、状态管理器,做到类似 storage 的效果,在网页中存储一些公用数据而不需要向后台请求...…

Vue-router,在静态切换的世界中翱翔

首先知道,Vue 是适合在 SPA(单页应用)开发中使用的,router 能够做到类似 html5 和 jQuery 中的 pjax(局部刷新,无刷新切换路由)的效果,也是 Web 应用的路由管理系统...…