Storage.vue 402 B

1234567891011121314151617181920212223
  1. <template>
  2. <block-storage-list
  3. :id="id"
  4. :getParams="getParams"
  5. :hidenGroupActions="true" />
  6. </template>
  7. <script>
  8. import BlockStorageList from '@Storage/views/blockstorage/components/List'
  9. export default {
  10. name: 'StorageListForHostSidepage',
  11. components: {
  12. BlockStorageList,
  13. },
  14. props: {
  15. id: String,
  16. getParams: {
  17. type: [Function, Object],
  18. },
  19. },
  20. }
  21. </script>