index.vue 368 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <page-header :title="$t('dictionary.waf_instance')" />
  4. <page-body>
  5. <waf-list :id="listId" />
  6. </page-body>
  7. </div>
  8. </template>
  9. <script>
  10. import WafList from './components/List'
  11. export default {
  12. name: 'WafIndex',
  13. components: {
  14. WafList,
  15. },
  16. data () {
  17. return {
  18. listId: 'WafInstancesList',
  19. }
  20. },
  21. }
  22. </script>