Baremetal.vue 435 B

123456789101112131415161718192021222324
  1. <template>
  2. <baremetal-list
  3. :hiddenFilterOptions="['host']"
  4. :id="id"
  5. :getParams="getParams"
  6. :hostInfo="hostInfo" />
  7. </template>
  8. <script>
  9. import BaremetalList from '@Compute/views/baremetal/components/List'
  10. export default {
  11. name: 'BaremetalListForPhysicalmachineSidepage',
  12. components: {
  13. BaremetalList,
  14. },
  15. props: {
  16. id: String,
  17. getParams: [Function, Object],
  18. hostInfo: Object,
  19. },
  20. }
  21. </script>