index.vue 456 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div>
  3. <page-header :title="$t('dictionary.ipv6_gateway')" />
  4. <page-body>
  5. <list
  6. :id="listId"
  7. :get-params="getParams" />
  8. </page-body>
  9. </div>
  10. </template>
  11. <script>
  12. import List from './components/List'
  13. export default {
  14. name: 'Ipv6GatewayIndex',
  15. components: {
  16. List,
  17. },
  18. data () {
  19. return {
  20. listId: 'Ipv6GatewayList',
  21. getParams: {
  22. details: true,
  23. },
  24. }
  25. },
  26. }
  27. </script>