Vue项目优化,echart实例
Posted csj007523
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue项目优化,echart实例相关的知识,希望对你有一定的参考价值。
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实例的主要内容,如果未能解决你的问题,请参考以下文章