Disk.vue 404 B

12345678910111213141516171819202122
  1. <template>
  2. <disk-list
  3. :hiddenFilterOptions="['storage', 'region']"
  4. :id="id"
  5. :getParams="getParams"
  6. :show-create-action="false" />
  7. </template>
  8. <script>
  9. import DiskList from '@Compute/views/disk/components/List'
  10. export default {
  11. name: 'DiskListForBlockstorageSidepage',
  12. components: {
  13. DiskList,
  14. },
  15. props: {
  16. id: String,
  17. getParams: [Function, Object],
  18. },
  19. }
  20. </script>