分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 代码编程

vue-webpack 引入echarts 注意事项

发布时间:2023-09-06 02:06责任编辑:白小东关键词:webpack

0.执行教程 https://www.cnblogs.com/goloving/p/8654176.html
1.在index 中创建 div

<!DOCTYPE html><html> ?<head> ???<meta charset="utf-8"> ???<meta name="viewport" content="width=device-width,initial-scale=1.0"> ???<title>app</title> ?</head> ?<body> ???<div id="app"></div> ???<!-- built files will be auto injected --> ???<div id="ecarts1" style="width:200px;height:200px" ></div> ?</body></html>

2.在组件中引入 echarts
  

<template> ?<div> ???<HelloWorld></HelloWorld> ???<ButtonIvew></ButtonIvew> ?</div></template><script>import HelloWorld from "./components/HelloWorld";import ButtonIvew from "./components/button";export default { ?components: { ???HelloWorld, ???ButtonIvew ?}, ?name: "App"};var echarts = require("echarts");require(‘echarts/chart/line‘);require(‘echarts/chart/bar‘);var option = { ?tooltip: { ?????trigger: ‘axis‘ ?}, ?legend: { ?????data: [‘蒸发量‘, ‘降水量‘] ?}, ?toolbox: { ?????show: true, ?????feature: { ?????????mark: { ?????????????show: true ?????????}, ?????????dataView: { ?????????????show: true, ?????????????readOnly: false ?????????}, ?????????magicType: { ?????????????show: true, ?????????????type: [‘line‘, ‘bar‘] ?????????}, ?????????restore: { ?????????????show: true ?????????}, ?????????saveAsImage: { ?????????????show: true ?????????} ?????} ?}, ?calculable: true, ?xAxis: [{ ?????type: ‘category‘, ?????data: [‘1月‘, ‘2月‘, ‘3月‘, ‘4月‘, ‘5月‘, ‘6月‘, ‘7月‘, ‘8月‘, ‘9月‘, ‘10月‘, ‘11月‘, ‘12月‘] ?}], ?yAxis: [{ ?????type: ‘value‘, ?????splitArea: { ?????????show: true ?????} ?}], ?series: [{ ?????name: ‘蒸发量‘, ?????type: ‘bar‘, ?????data: [2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3] ?}, { ?????name: ‘降水量‘, ?????type: ‘bar‘, ?????data: [2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3] ?}]};var myChart = echarts.init(document.getElementById(‘ecarts1‘));myChart.setOption(option);</script><style>#app { ?text-align: center; ?margin: 60px;}</style>

  
3.在组件构建完成挂载后执行 生成echarts动作

vue-webpack 引入echarts 注意事项

原文地址:https://www.cnblogs.com/tongbiao/p/9380026.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved