index.vue 994 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div>
  3. <ecpmChaet />
  4. <userDataChart />
  5. <!-- <onlineChart /> -->
  6. <!-- <earningsChart /> -->
  7. <!-- <barChart /> -->
  8. <!-- <el-row :gutter="20">
  9. <el-col :lg="12" :md="24">
  10. <pieChart />
  11. </el-col>
  12. <el-col :lg="12" :md="24">
  13. <circleChart />
  14. </el-col>
  15. </el-row> -->
  16. </div>
  17. </template>
  18. <script lang="js">
  19. import { defineComponent } from 'vue'
  20. import barChart from './barChart.vue'
  21. import pieChart from './pieChart.vue'
  22. import circleChart from './circleChart.vue'
  23. import onlineChart from './onlineChart.vue'
  24. import earningsChart from './earningsChart.vue'
  25. import ecpmChaet from './ecpmChaet.vue'
  26. import userDataChart from './userDataChart.vue'
  27. export default defineComponent({
  28. components: {
  29. onlineChart,
  30. barChart,
  31. pieChart,
  32. circleChart,
  33. earningsChart,
  34. ecpmChaet,
  35. userDataChart
  36. },
  37. setup() {
  38. }
  39. })
  40. </script>
  41. <style lang="scss" scoped>
  42. </style>