Quick Start

Create a new post

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
<div>
<div id="chart" style="width: 600px; height: 400px;"></div>
</div>
</template>


<script>
import * as echarts from 'echarts';

export default {
mounted() {
fetch('/api/goods', {
method: 'POST'
})
.then(response => response.json())
.then(data => {})
}
}
</script>