index.vue 579 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div>
  3. <page-header :title="title || $t('network.text_19')" />
  4. <page-body>
  5. <list ref="list" :id="listId" :get-params="getParams" />
  6. </page-body>
  7. </div>
  8. </template>
  9. <script>
  10. import KeepAliveMixin from '@/mixins/keepAlive'
  11. import List from './components/List'
  12. export default {
  13. name: 'LoadbalancerclusterIndex',
  14. components: {
  15. List,
  16. },
  17. mixins: [KeepAliveMixin],
  18. props: {
  19. title: String,
  20. },
  21. data () {
  22. return {
  23. listId: 'LoadbalancerclusterList',
  24. getParams: {
  25. details: true,
  26. },
  27. }
  28. },
  29. }
  30. </script>