1.0.4 • Published 1 year ago

zs-chart v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

zs-chart

基于vue3的echarts图表库

安装和使用方法

  1. npm install zs-chart
  2. vue中使用
<template>
   <z-chart ref="chart" :render-mode="'svg'" :width="500" ></z-chart>
</template>

<script setup lang="ts">
   import {ZChart} from "zs-chart";  //按需引入方法
   import {ref,onMounted} from 'vue'
   const chart = ref()
   onMounted(() => {
      chart.value.paintChart({option},true)
   })
</script>
1.0.4

1 year ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago