码迷,mamicode.com
首页 > 其他好文 > 详细

Vue项目优化,echart实例

时间:2020-05-30 20:18:33      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:生成   height   tps   document   width   str   index   echarts   set   

Vue项目优化

1.打包发布自定义配置:https://cli.vuejs.org/zh/config/#vue-config-js

2.配置HTTPS https://freessl.cn

3.mock.js 生成测试数据

 

4.echart实例:
https://echarts.apache.org/zh/index.html

echart实例:
1.引入echarts.min.js
2.<div id="main" style="width:600px;height:800px;></div>
3.<script>
var ectest=echarts.init(document.getElementById("main"));
var option=""//从echart官网复制你想要的图像样式
var option = {
xAxis: {
type: ‘category‘,
data: [‘Mon‘, ‘Tue‘, ‘Wed‘, ‘Thu‘, ‘Fri‘, ‘Sat‘, ‘Sun‘]
},
yAxis: {
type: ‘value‘
},
series: [{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: ‘line‘
}]
};

ectest.setOption(option);
</script>

Vue项目优化,echart实例

标签:生成   height   tps   document   width   str   index   echarts   set   

原文地址:https://www.cnblogs.com/csj007523/p/12994334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!