| 123456789101112131415161718192021222324 |
- <template>
- <div class="c-info-grid medium">
- <running v-bind="$attrs" />
- <template v-if="$attrs.online">
- <screen-shot v-bind="$attrs" />
- <download />
- </template>
- </div>
- </template>
- <script>
- import Running from './Running'
- import ScreenShot from './ScreenShot'
- import Download from './Download'
- export default {
- name: 'DeviceRuntime',
- components: {
- Running,
- ScreenShot,
- Download
- }
- }
- </script>
|