hookehuyr

chore: 删除未使用的HelloWorld组件并更新HomePage的编辑时间

删除`src/components/HelloWorld.vue`组件,因为该组件已不再使用。同时更新`src/views/HomePage.vue`文件的最后编辑时间。
1 -<script setup>
2 -import { ref } from 'vue'
3 -
4 -defineProps({
5 - msg: String,
6 -})
7 -
8 -const count = ref(0)
9 -</script>
10 -
11 -<template>
12 - <h1>{{ msg }}</h1>
13 -
14 - <div class="card">
15 - <button type="button" @click="count++">count is {{ count }}</button>
16 - <p>
17 - Edit
18 - <code>components/HelloWorld.vue</code> to test HMR
19 - </p>
20 - </div>
21 -
22 - <p>
23 - Check out
24 - <a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
25 - >create-vue</a
26 - >, the official Vue + Vite starter
27 - </p>
28 - <p>
29 - Learn more about IDE Support for Vue in the
30 - <a
31 - href="https://vuejs.org/guide/scaling-up/tooling.html#ide-support"
32 - target="_blank"
33 - >Vue Docs Scaling up Guide</a
34 - >.
35 - </p>
36 - <p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
37 -</template>
38 -
39 -<style scoped>
40 -.read-the-docs {
41 - color: #888;
42 -}
43 -</style>
1 <!-- 1 <!--
2 * @Date: 2025-03-20 19:55:21 2 * @Date: 2025-03-20 19:55:21
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-03-20 20:48:08 4 + * @LastEditTime: 2025-03-20 22:39:23
5 * @FilePath: /mlaj/src/views/HomePage.vue 5 * @FilePath: /mlaj/src/views/HomePage.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
......