Auto Commit

上级 a5450115
...@@ -11,7 +11,7 @@ defineProps({ ...@@ -11,7 +11,7 @@ defineProps({
<div class="greetings"> <div class="greetings">
<h1 class="green">{{ msg }}</h1> <h1 class="green">{{ msg }}</h1>
<h3> <h3>
You’ve successfully created a project with 这是我的第一个InsCode应用,使用
<a target="_blank" href="https://vitejs.dev/">Vite</a> + <a target="_blank" href="https://vitejs.dev/">Vite</a> +
<a target="_blank" href="https://vuejs.org/">Vue 3</a>. <a target="_blank" href="https://vuejs.org/">Vue 3</a>.
</h3> </h3>
......
// 导入Vue的createApp函数和App组件
import { createApp } from 'vue' import { createApp } from 'vue'
import App from './App.vue' import App from './App.vue'
// 导入main.css样式文件
import './assets/main.css' import './assets/main.css'
// 使用createApp函数创建Vue实例,并将App组件挂载到id为app的元素上
createApp(App).mount('#app') createApp(App).mount('#app')
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册