Host.vue 389 B

123456789101112131415161718192021
  1. <template>
  2. <host-list
  3. :hiddenFilterOptions="['brand', 'region', 'zone', 'account']"
  4. :id="id"
  5. :getParams="getParams" />
  6. </template>
  7. <script>
  8. import HostList from '@Compute/views/host/components/List'
  9. export default {
  10. name: 'HostListForCloudaccountSidepage',
  11. components: {
  12. HostList,
  13. },
  14. props: {
  15. id: String,
  16. getParams: [Function, Object],
  17. },
  18. }
  19. </script>