7.23
2.当我们无法获取到this.$ref或者this.$el时候,应该放到this.$nextTick(()=>{
})回调中
```
4.当一个组件需要使用另一份localStorage中传递过来的数据,如何判断使用的哪份数据?
其实不需要判断、只需要即使调用更新数据的方法就好了。这样保证你渲染的数据得到的图表是最新的图表数据。
5.created、mounted函数中可以操作data中的数据
6.this.$el.querySelector() //获取vue document上的元素节点的方法
7.String.fromCharCode(65 + i) //String中的ASCII码 65为 A //为了获取A B C 的字符串
8.将 Unicode 编码转为一个字符:
var n = String.fromCharCode(65);
n 输出结果:
A
9.给一个对象添加一些属性,删除一些属性
eventAnti.id = eventItem.identifier;
eventAnti.eventViewName = eventItem.name;
// 清空属性,删除一个对象的属性
delete eventAnti.pro;
delete eventAnti.op;
delete eventAnti.filters;