Files
gitea_actions/src/views/HomeView.vue
编码猿 ce444b098e
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 12s
Build Vue3 App / build (push) Has been cancelled
first commit
2025-10-04 21:16:45 +08:00

10 lines
151 B
Vue

<script setup lang="ts">
import TheWelcome from '../components/TheWelcome.vue'
</script>
<template>
<main>
<TheWelcome />
</main>
</template>