index.vue 439 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="c-info-grid medium">
  3. <running v-bind="$attrs" />
  4. <template v-if="$attrs.online">
  5. <screen-shot v-bind="$attrs" />
  6. <download />
  7. </template>
  8. </div>
  9. </template>
  10. <script>
  11. import Running from './Running'
  12. import ScreenShot from './ScreenShot'
  13. import Download from './Download'
  14. export default {
  15. name: 'DeviceRuntime',
  16. components: {
  17. Running,
  18. ScreenShot,
  19. Download
  20. }
  21. }
  22. </script>