feat: add echarts

This commit is contained in:
xiaoxian521
2021-04-07 17:18:41 +08:00
parent dae90a0c21
commit 651ac333ee
7 changed files with 203 additions and 11 deletions

View File

@@ -1,3 +1,14 @@
<template>
<router-view />
</template>
<script lang='ts'>
import * as echarts from 'echarts'
import { provide } from 'vue'
export default {
setup(){
provide('echarts', echarts)
}
}
</script>