| 12345678910111213141516171819 |
- <template>
- <common-dashboard :range-id="resId" range-type="cloudregions" />
- </template>
- <script>
- import CommonDashboard from '@/sections/CommonDashboard'
- export default {
- name: 'Dashboard',
- components: {
- CommonDashboard,
- },
- props: {
- resId: {
- type: String,
- required: true,
- },
- },
- }
- </script>
|