Getting Started
Installation
Get started with Nuxt ECharts.
Quick Start
You can start a fresh new project with:
Terminal
npx nuxi module add echarts
Manually Installation
Or you can install it manually:
pnpm i nuxt-echarts -D
Then, add it to modules
in your nuxt.config
:
nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-echarts',
]
})
Configuration
Add an echarts
section in your nuxt.config
:
nuxt.config.ts
echarts: {
// Options
}
Checkout the echarts configuration for all available options and features to customize.