List.vue 340 B

12345678910111213141516171819
  1. <template>
  2. <list id="ContainerImageSecretList" type="container_image" :get-params="getParams" />
  3. </template>
  4. <script>
  5. import List from '../../container-secret/components/List.vue'
  6. export default {
  7. name: 'ContainerImageSecretList',
  8. components: {
  9. List,
  10. },
  11. props: {
  12. getParams: {
  13. type: Object,
  14. },
  15. },
  16. }
  17. </script>