windows/app/pages/index.vue

11 lines
198 B
Vue
Raw Permalink Normal View History

2025-09-26 09:41:29 +00:00
<template>
<div>
<!-- This page will be shown when accessing / -->
<Desktop />
</div>
</template>
<script setup lang="ts">
import Desktop from '../../components/Desktop.vue';
</script>