摘要:
1、对象属性键名修改: 1 data: { 2 code: 0, 3 text: '数据分析', 4 plant: [], 5 }, 6 // 把data下的plant改成children 7 data: { 8 code: 0, 9 text: '数据分析', 10 children: [], 1 阅读全文
摘要:
1、安装axios和qs:vue和后台交互获取数据通常使用axios库qs.stringify(data)可以解决data数据格式问题 npm install --save axios vue-axios qs 2、封装axios:我是src下创建两个文件夹:api和utilsapi用来放接口数据u 阅读全文
摘要:
在 webpack 中使用 ECharts 【官网教程】 1、使用如下命令通过 npm 安装 ECharts npm install echarts --save 2、全局引用在main.js import echarts from 'echarts' Vue.prototype.$echarts 阅读全文
摘要:
第一种方法:通过promise.all()进行同步验证 submitForm(formName1,formName2){ let that =this // 两个表单验证 let p1 = new Promise((resolve, reject) => { this.$refs[formName1 阅读全文
摘要:
vue如何一打开子组件弹窗都刷新? 在父页面中给子组件同时绑定:visible.sync和v-if :visible.sync="paramAddDialog" v-if="paramAddDialog" 整体代码: <el-dialog title="绑定其他更多的账户" width="1200p 阅读全文