摘要:
1 <template> 2 <div class="artcle"> 4 <el-form 5 label-width="100px" 6 :model="testForm"> 7 <el-form-item 8 v-for="(vtem, index) in testForm.version" 阅读全文
摘要:
import Vue from 'vue' import axios from 'axios' // 引入axios import QS from 'qs' // 引入qs模块,用来序列化post类型的数据 import Cookies from 'js-cookie' import router 阅读全文
摘要:
问题: 1 html: 2 <el-cascader 3 v-model="addform.qxvalue" 4 :options="options" 5 :props="defaultParams" 6 :show-all-levels="false" 7 placeholder="请选择数据权限 阅读全文
摘要:
1 let arr = [ 2 {id: 1, name: 'aaa'}, 3 {id: 4, name: 'ddd'}, 4 {id: 2, name: 'bbb'}, 5 {id: 3, name: 'ccc'} 6 ] 7 arr.sort((a, b) => { 8 return (a.id 阅读全文
摘要:
问题: 使用vue element-ui中的form表单验证出现了输入框或者下拉框中明明有值, 但是却还是提示请输入或请选择,错误如下: 1 <el-form 2 status-icon 3 :ref="employeesRules" 4 :model="employeesForm" 5 label 阅读全文
摘要:
在main.js中引入对应组件的语言包 eg: 1 import VueI18n from 'vue-i18n'; // 引入国际化 2 import elementEn from 'element-ui/lib/locale/lang/en'; // element-ui 英语语言包 3 impo 阅读全文
摘要:
解决方法:// template 1 <el-upload 2 action="/api/oss/file/add" 3 :headers="headers" // 如果头部需要传token 4 multiple 5 :limit="1" // 限制文件个数 6 :before-upload="ha 阅读全文