项目初始化

This commit is contained in:
zhoumengru
2025-08-29 12:06:02 +08:00
parent dda905cda0
commit 5e559f8d36
18 changed files with 13367 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<template>
<div class="home">
<img alt="Vue logo" src="../assets/logo.png" />
<HelloWorld msg="Welcome to Your Vue.js App" />
</div>
</template>
<script>
// @ is an alias to /src
import HelloWorld from "@/components/HelloWorld.vue";
export default {
name: "HomeView",
components: {
HelloWorld,
},
};
</script>