
VUE
关于vue相关技术
Jim010101
YYDS
展开
-
Cannot read properties of undefined (reading ‘indexOf‘)
Cannot read properties of undefined (reading ‘indexOf’)表单中某个地方缺少 prop字段原创 2021-11-16 11:12:40 · 10947 阅读 · 0 评论 -
Ztree组件 支持全选 和反选不影响父级
"@ztree/ztree_v3": "^3.5.46",main.jsimport '@ztree/ztree_v3/js/jquery.ztree.core.js'import '@ztree/ztree_v3/css/zTreeStyle/zTreeStyle.css'import '@ztree/ztree_v3/js/jquery.ztree.excheck.min.js'vue.config.jsconst path = require('path')const FileM..原创 2021-09-23 16:19:32 · 477 阅读 · 0 评论 -
权限树组件封装
调用import RoleTree from './RoleTree'<el-form-item label="功能权限" prop="funcId"> <RoleTree :type="pageType" :row="rowObj" @callBack="funcChange" :key="key" /></el-form-item>funcChange(row) { this.ruleForm.funcId = row.toString() this.原创 2021-09-10 15:11:08 · 207 阅读 · 0 评论 -
分页组件封装
scss /*分页*/ .el-pagination { text-align: right; // margin-top: 20px; span.el-pagination__total { position: absolute; left: 0; } &.is-background { .el-pager { li { &:not(.disable.原创 2021-09-10 15:07:59 · 161 阅读 · 0 评论 -
vue 弹窗 多选表格组件封装 以及 回调绑定
组件<template> <!-- 角色table多选回显组件-强制单选 --> <div> <el-row> <el-form :inline="true" :model="ruleForm" class="demo-form-inline"> <el-form-item label="角色名称:"> <el-input size="small" v-model="ru.原创 2021-09-10 15:02:00 · 405 阅读 · 0 评论 -
vue 表单确认密码 问题
校验 confirmPwd: [ { required: true, validator: (rule, value, callback) => { if (this.ruleForm.confirmPwd === '') { callback(new Error('请再次输入密码')) } else if (this.ruleForm.confirmPwd != this.ruleForm.pwd) {原创 2021-09-10 14:40:31 · 516 阅读 · 0 评论 -
element ui el-table 多选 表头多选框替换文字
element ui el-table 多选 表头多选框替换文字.el-table /deep/.DisabledSelection .cell .el-checkbox__inner { // margin-left: -30px; display: none; position: relative;}.el-table /deep/.DisabledSelection .cell:before { content: '多选'; position: absolute; right:原创 2021-09-10 14:35:03 · 1503 阅读 · 0 评论 -
vue富文本编辑器 组件封装
**Vue-Quill-Editor**vue-quill-editor基本配置> npm install vue-quill-editor -smain.js中引入 import VueQuillEditor from 'vue-quill-editor' import 'quill/dist/quill.core.css' import 'quill/dist/quill.snow.css' import 'quill/dist/quill.bubble.css'转载 2021-07-23 16:01:35 · 826 阅读 · 2 评论