Files
files_second/pages/index/data.vue
2026-04-17 16:12:45 +08:00

25 lines
345 B
Vue

<template>
<view>
<view id="chart" style="width: 100%; height: 400px;"></view>
<view id="pie" style="width: 100%; height: 400px;"></view>
<view id="line" style="width: 100%; height: 400px;"></view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>