vue
赵小默
不为模模糊糊的未来担忧,只为清清楚楚的现在努力
展开
-
Windows安装Nginx及部署vue前端项目操作
windows系统部署nginx及vue项目原创 2023-08-31 16:50:38 · 712 阅读 · 0 评论 -
vue 过滤数组中的重复对象
quChong(obj) {this.arrary=[]const res = new Map();this.arrary=obj.filter((a) => !res.has(a.name) && res.set(a.name, 1))}原创 2021-12-13 14:40:19 · 2275 阅读 · 0 评论 -
正则表达式
// 主键 a-z A-Z 0-9 _- primary: { validator: /^[a-zA-Z0-9_-]+$/, message: '{{label}} 只能为数字、字母的组合' }, word: { validator: /^[a-zA-Z_-]+$/, message: '{{label}} 只能为英文字母' }, email: { validator: /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+...原创 2021-08-11 17:23:31 · 134 阅读 · 0 评论 -
vue 过滤数组中的重复对象
quChong(obj) {this.arrary=[] const res = new Map();this.arrary=obj.filter((a) => !res.has(a.name) && res.set(a.name, 1))}原创 2021-07-01 14:56:05 · 2092 阅读 · 0 评论 -
iview Modal弹框
modal弹框至于最顶部<Modal v-model="modal13" :zIndex="99999" draggable scrollable title="Modal 2"> <div>This is the second modal</div> </Modal>原创 2021-06-09 15:23:15 · 479 阅读 · 0 评论 -
前端之--Vue学习笔记1
Vue环境:1.安装npm npm全称Node Package Manager,是一个基于Node.js的包管理器,也是Node.js社区最流行、支持的第三方模块最多的包管理器npm -v2.由于网络原因安装cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org3.安装vue...原创 2019-09-11 17:36:18 · 104 阅读 · 0 评论