index.vue 310 B

12345678910111213141516171819
  1. <template>
  2. <div>
  3. <page-header :title="$t('dictionary.security-alerts')" />
  4. <page-body>
  5. <list id="security-alerts-list" />
  6. </page-body>
  7. </div>
  8. </template>
  9. <script>
  10. import List from './components/List'
  11. export default {
  12. name: 'SecurityAlerts',
  13. components: {
  14. List,
  15. },
  16. }
  17. </script>