| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <base-monitor
- :data="data"
- :idKey="idKey"
- :constants="constants" />
- </template>
- <script>
- import BaseMonitor from '@Compute/sections/monitor/BaseMonitor'
- import { AGENT_TEMPERATURE_MONITOR } from '@Compute/views/vminstance/constants'
- export default {
- name: 'AgentTemperatureMonitor',
- components: {
- BaseMonitor,
- },
- props: {
- data: { // listItemData
- type: Object,
- required: true,
- },
- idKey: {
- type: String,
- },
- },
- data () {
- return {
- constants: AGENT_TEMPERATURE_MONITOR,
- }
- },
- }
- </script>
|