ECharts
2025/10/2小于 1 分钟
ECharts
注
vuepress ECharts 图表不显示时没有错误提示,通过在线编辑器运行后再拷贝到文档中
在Vuepress中使用ECharts
- 安装
npm install -D echarts- 配置
import { hopeTheme } from "vuepress-theme-hope";
export default hopeTheme({
markdown: {
echarts: true,
},
});- 测试
Diagram:
test
Code:
:::echarts test
\``` js
const option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [
{
data: [150, 230, 224, 218, 135, 147, 260],
type: 'line'
}
]
};
\```
:::