Skip to content

v0.4.0

Choose a tag to compare

@kingyue737 kingyue737 released this 20 Jul 10:57
· 127 commits to main since this release

compare changes

🚀 Enhancements

  • ⚠️ Transfer SSR functionality from VChart to VChartFull (433e100)

🩹 Fixes

  • AddComponentsDir not work in production (b316fda)

📖 Documentation

  • Enable nuxt studio (8ebb08c)
  • Update downloads href [skip ci] (f9b4890)

🏡 Chore

🤖 CI

⚠️ Breaking Changes

  • ⚠️ Removed ssr option from module configuration. Previously, setting ssr: true would make all <VChart> components render on the server and then client. Now use the new introduced <VChartFull> component instead for server-side rendering with client hydration.
  • <VChart> now behaves exactly the same as Vue-ECharts

Migration Guide:

export default defineNuxtConfig({
  echarts: {
-   ssr: true
  }
})

Use <VChartFull> component instead of <VChart> for ECharts SSR.

❤️ Contributors