index.vue 340 B

1234567891011121314151617181920212223
  1. <template>
  2. <div>
  3. <page-header :title="$t('monitor.dashboard.title')" />
  4. <page-body>
  5. <dashboard-index />
  6. </page-body>
  7. </div>
  8. </template>
  9. <script>
  10. import DashboardIndex from './components'
  11. export default {
  12. name: 'MonitorDashboardIndex',
  13. components: {
  14. DashboardIndex,
  15. },
  16. }
  17. </script>
  18. <style scoped>
  19. </style>