You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
451 B
30 lines
451 B
<template> |
|
<view ref="echartRef" id="chart"></view> |
|
</template> |
|
|
|
<script> |
|
import * as echarts from '@/uni_modules/s-echarts/echarts.min.js' |
|
export default { |
|
name: 'cs-echart', |
|
data() { |
|
return { |
|
echart: null |
|
} |
|
}, |
|
mounted() { |
|
this.init() |
|
}, |
|
methods: { |
|
init() { |
|
this.echart = echarts.init(this.$refs.echartRef) |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
.chart { |
|
width: 100%; |
|
height: 100%; |
|
} |
|
</style>
|
|
|