36 lines
380 B
Vue
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> |