| 123456789101112131415161718192021222324 |
- <template>
- <baremetal-list
- :hiddenFilterOptions="['host']"
- :id="id"
- :getParams="getParams"
- :hostInfo="hostInfo" />
- </template>
- <script>
- import BaremetalList from '@Compute/views/baremetal/components/List'
- export default {
- name: 'BaremetalListForPhysicalmachineSidepage',
- components: {
- BaremetalList,
- },
- props: {
- id: String,
- getParams: [Function, Object],
- hostInfo: Object,
- },
- }
- </script>
|