随笔 - 232
文章 - 1
评论 - 28
阅读 -
60万
随笔分类 - vue
vue中el-checkbox-group无法选中
摘要:原因:vue中给对象新增属性直接用=赋值方式,虽然可以新增属性,但是不会触发视图更新 例如定义了temp对象在操作过程中又新增了b属性 data () { return { temp: { a: '' } } } //直接赋值不会触发视图更新 this.temp.b= 24 可以新增属性,但是不会触
阅读全文
el-input 标签中密码的显示和隐藏
摘要:效果展示: 密码隐藏: 密码显示: 代码展示: 一:<el-input>标签代码 <el-form-item label="密码" prop="password"> <el-input :type="passw" v-model="adduser.password" style="width: 30
阅读全文
vuex 的基本使用
摘要:工程目录 主要关注store 文件夹下的文件 store/index.js store/modules/users.js /components/test.vue /components/test.vue
阅读全文