| 1234567891011121314151617181920212223 |
- <template>
- <block-storage-list
- :id="id"
- :getParams="getParams"
- :hidenGroupActions="true" />
- </template>
- <script>
- import BlockStorageList from '@Storage/views/blockstorage/components/List'
- export default {
- name: 'StorageListForHostSidepage',
- components: {
- BlockStorageList,
- },
- props: {
- id: String,
- getParams: {
- type: [Function, Object],
- },
- },
- }
- </script>
|