Vue
猿林新秀
文章的某些地方不一定简洁,甚至有错误,请发现问题的朋友及时指出,共同进步。我有更好的思路时,也会及时更新文章,谢谢大家!
展开
-
关于Vue的一些冷知识
1.为什么创建Vue实例时用vm作为一个变量名?答:(1)vm是ViewModel的缩写。(2)Vue虽然没有完全遵循 MVVM 模型,但是 Vue 的设计也受到了它的启发。因此在文档中经常会使用 vm (ViewModel 的缩写) 这个变量名表示 Vue 实例。...原创 2020-11-16 11:46:18 · 331 阅读 · 0 评论 -
Vue刷新页面
// 方法一:this.$router.go(0)原创 2020-11-09 16:21:21 · 208 阅读 · 0 评论 -
element拼音模糊搜索
1.安装依赖(npm有问题就用cnpm)npm install pinyin-match --save cnpm install pinyin-match --save2.引用import pinyin from 'pinyin-match'3.关键代码pinyin.match(data, value); //data匹配的内容,value输入的内容4.示例<template> <div> <el-input .原创 2020-10-29 15:35:11 · 746 阅读 · 0 评论 -
Vue常见问题积累
1.不要在选项 property 或回调上使用箭头函数:比如 created: () => console.log(this.a) 或 vm.$watch('a', newValue => this.myMethod())。因为箭头函数并没有 this,this 会作为变量一直向上级词法作用域查找,直至找到为止。经常导致 Uncaught TypeError: Cannot read property of undefined 或 Uncaught TypeError: this.my原创 2020-08-10 14:38:04 · 124 阅读 · 0 评论