06 2021 档案
摘要:在Vue-cli中使用lang="less"时报错:Module build failed: TypeError: this.getOptions is not a function at Object.loader (D:\WORK\VueProject\XiaoWei\node_modules\
阅读全文
摘要:1.下载 qrcode npm i qrcode 2.在所需组件使用qrcode <template> <div> <img :src="qrcode" width="192"> </div> </template>> import QRCode from 'qrcode' export defau
阅读全文
摘要:想要修改element-ui dialog样式,不能直接在<style scoped>里修改,是无效的,应增加<style>标签再写样式。
阅读全文
摘要:1. v-model 表单输入绑定 使用v-model创建双向数据绑定, 用来监听用户的输入事件以更新数据,并对一些极端场景进行一些特殊处理。 <template> <div> <input class="login-input" type="text" v-model="username" pla
阅读全文