Files
love-nav-vue/src/components/setting/home/HomeEChart.vue
2023-12-26 00:52:25 +08:00

36 lines
380 B
Vue

<template>
<div id="main">
</div>
</template>
<script>
import * as echarts from 'echarts'
import Vue from "vue";
Vue.prototype.$echarts = echarts;
export default {
name: "HomeEChart",
data() {
return {
}
},
mounted() {
},
created() {
},
computed: {},
methods: {
}
}
</script>
<style scoped>
.main{
width: 600px;
height: 500px;
}
</style>