echarts自适应屏幕
let map = echarts.init( this.$refs.chinaMap ), map.setOption( options ); window.addEventListener('resize', function() { map.resize() }) 如果你用的是v-chart方式引入,需要到autoresize属性,那么v-chart需要包裹一层div,且有flex属…
569 2022-08-17 去围观vuelic脚手架适配移动端解决方法rem
目前在vue2 环境下进行 安装: npm install amfe-flexible --save //为html、body添加font-size,窗口调整时候重新设置font-size npm install postcss-pxtorem@5.1.1 --save-dev //将px转rem 1,在main.js入口文件引入 import 'amfe-flexible' &nb…
670 2022-08-16 去围观解决:TypeError: Cannot read property 'forceUpdate' of undefined
uniapp开发微信小程序这个错是没有填写AppID造成。 解决方法:
629 2022-06-12 去围观margin没作用到子元素上,影响到了父元素甚至祖父元素
<style type="text/css"> *{ margin: 0px; padding: 0px; } .show{ margin: 0px auto; 200px; height: 100px; background-color: #999999; } .show h2{ margin-top: 50px; …
602 2022-06-09 去围观