Files
jshERP/jshERP-web/src/views/dashboard/Analysis.vue
2021-04-07 23:53:57 +08:00

27 lines
366 B
Java

<template>
<div style="margin: 12px 12px 0px;">
<index-chart></index-chart>
</div>
</template>
<script>
import IndexChart from './IndexChart'
export default {
name: "Analysis",
components: {
IndexChart
},
data() {
return {
}
},
created() {
},
methods: {
}
}
</script>