
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Echarts.js的简单封装
npm install vsechart echarts
<template>
<div id="app">
<vs-echart style="height:40vh" :option="option"></vs-echart>
<vs-echart style="height:40vh" :option="option" theme="dark" svg></vs-echart>
</div>
</template>
<script>
import VsEchart from "vsechart";
export default {
components: { VsEchart },
data: function () {
return {
//option的数据格式和Echart.js一致
option: {
title: {
text: "ECharts",
},
tooltip: {},
xAxis: {
data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"],
},
yAxis: {},
series: [
{
name: "销量",
type: "bar",
data: [15, 20, 36, 10, 10, 20],
},
],
},
};
},
};
</script>
| Methods | Description |
|---|---|
| getInstance | return echarts instance |
version:1.0.3 使用vue2
version:1.0.4 升级vue3
FAQs
simple wrap echarts to vue
We found that vsechart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.