index.vue 387 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div>
  3. <page-header :title="$t('network.ssl_certificate')" />
  4. <page-body>
  5. <list
  6. :id="listId" />
  7. </page-body>
  8. </div>
  9. </template>
  10. <script>
  11. import List from './components/List'
  12. export default {
  13. name: 'SslCertificateIndex',
  14. components: {
  15. List,
  16. },
  17. mixins: [],
  18. data () {
  19. return {
  20. listId: 'SslCertificateList',
  21. }
  22. },
  23. }
  24. </script>