index.vue 690 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div>
  3. <page-header :title="$t('dictionary.explorer')" />
  4. <page-body>
  5. <monitor-index />
  6. </page-body>
  7. <!-- <page-footer>
  8. <div slot="right">
  9. <a-button class="mr-3" type="primary" :loading="loading" @click="handleConfirm">{{ $t('common.save') }}</a-button>
  10. <a-button @click="reset">{{ $t('common.reset') }}</a-button>
  11. </div>
  12. </page-footer> -->
  13. </div>
  14. </template>
  15. <script>
  16. import MonitorIndex from './components/index'
  17. export default {
  18. name: 'Monitor',
  19. components: {
  20. MonitorIndex,
  21. },
  22. data () {
  23. return {
  24. loading: false,
  25. }
  26. },
  27. methods: {
  28. handleConfirm () {},
  29. reset () {},
  30. },
  31. }
  32. </script>