- 博客(3)
- 收藏
- 关注
原创 执行上下文、变量提升、作用域链和闭包
Data and Structure typesThe latest ECMAScript standard defines nine types:Six Data Types that are primitives, checked by typeof operator:undefined : typeof instance === "undefined"Boolean : typeof instance === "boolean"Number : typeof instance === "n
2020-11-28 17:28:25
157
原创 vant tabs标签无法手势滑动,设置swipeable无效
因为在移动端怎么也滑动不了标签,设置多个属性依然无用只能去官网一个个对比标签属性终于找到了这个问题所在,是因为在重置样式文件里设置了touch-action属性,所以滑动无效* { touch-action: pan-y;}于是,只要在组件内重新设置就可以了 /deep/.van-tabs__wrap { touch-action: manipulation; }touch-action属性具体详情参考下方链接:https://developer.mozi
2020-10-22 16:52:56
6953
7
原创 vue 引入echarts(bug:1.不显示;2.报错 “ TypeError: Cannot read property ‘getAttribute‘ of null ”)
首先要安装好echartsnpm install echarts --save在main.js引入echartsimport echarts from 'echarts'Vue.prototype.$echarts = echarts创建好要挂载的节点要注意的是,该节点必须设置好宽高,否则即使正常引入也会不显示 <div id='main' style="width: 600px;height:400px;"></div>在组件中初始化echa.
2020-10-15 16:43:58
549
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人