上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 38 下一页
摘要: 这个问题,困扰了我,特此记录。 子组件显示父组件传来的props 做更新有 以下2种常用方式: 1.直接使用 class Child extends Component { render() { return <div>{this.props.someThings}</div> } } 这种方式可以 阅读全文
posted @ 2021-08-02 15:14 雪莉06 阅读(2636) 评论(1) 推荐(0) 编辑
摘要: $.ajax({ type: 'POST', data:{'start':start,'end':end}, url: '${pageContext.request.contextPath}/adminlogin/between', dataType: 'text', success: functi 阅读全文
posted @ 2021-07-28 13:31 雪莉06 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 表格加载 <el-table :data="tableData" row-key="target_id" v-loading="loading" element-loading-text="小主别急" border > async getAllIndicatorNameList() { this.l 阅读全文
posted @ 2021-07-27 16:54 雪莉06 阅读(3868) 评论(0) 推荐(0) 编辑
摘要: el-table :data="list" style="width: 100%" row-key="id" :key="Math.random()" border lazy ref="multipleTable" @selection-change="checkAll" :load="loadCh 阅读全文
posted @ 2021-07-24 23:54 雪莉06 阅读(1585) 评论(0) 推荐(0) 编辑
摘要: 在找不到props里面的地址的时候,使用withRouter 可以找到了 阅读全文
posted @ 2021-07-13 15:22 雪莉06 阅读(876) 评论(0) 推荐(0) 编辑
摘要: 在Vue-cli中使用lang="less"时报错:Module build failed: TypeError: this.getOptions is not a function at Object.loader (D:\WORK\VueProject\XiaoWei\node_modules\ 阅读全文
posted @ 2021-06-30 11:27 雪莉06 阅读(3207) 评论(0) 推荐(0) 编辑
摘要: 1.下载 qrcode npm i qrcode 2.在所需组件使用qrcode <template> <div> <img :src="qrcode" width="192"> </div> </template>> import QRCode from 'qrcode' export defau 阅读全文
posted @ 2021-06-18 17:57 雪莉06 阅读(1345) 评论(0) 推荐(0) 编辑
摘要: 想要修改element-ui dialog样式,不能直接在<style scoped>里修改,是无效的,应增加<style>标签再写样式。 阅读全文
posted @ 2021-06-18 17:50 雪莉06 阅读(753) 评论(0) 推荐(0) 编辑
摘要: 1. v-model 表单输入绑定 使用v-model创建双向数据绑定, 用来监听用户的输入事件以更新数据,并对一些极端场景进行一些特殊处理。 <template> <div> <input class="login-input" type="text" v-model="username" pla 阅读全文
posted @ 2021-06-16 15:05 雪莉06 阅读(1548) 评论(0) 推荐(0) 编辑
摘要: 路由 nuxt按照 pages 文件夹的目录结构自动生成路由http://localhost:3000/user/reg 相当于 去访问 pages文件夹 下的 user文件夹 下的 reg.vuevue需在 src/router/index.js 手动配置路由 入口页面 nuxt页面入口为 lay 阅读全文
posted @ 2021-05-10 15:25 雪莉06 阅读(1199) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 38 下一页