提交 73888f9d 编写于 作者: Q qq_63480508

Wed Mar 19 16:05:00 CST 2025 inscode

上级 aa50c4cb
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
"preview": "vite preview --port 4173" "preview": "vite preview --port 4173"
}, },
"dependencies": { "dependencies": {
"element-plus": "^2.9.6",
"element-ui": "^2.15.14",
"guess": "^1.0.2", "guess": "^1.0.2",
"vue": "^3.2.37" "vue": "^3.2.37"
}, },
......
<script setup>
defineProps({
msg: {
type: String,
required: true
}
})
</script>
<template>
<div class="greetings">
<h1 class="green">{{ msg }}</h1>
<h3>
You’ve successfully created a project with
<a target="_blank" href="https://vitejs.dev/">Vite</a> +
<a target="_blank" href="https://vuejs.org/">Vue 3</a>.
</h3>
</div>
</template>
<style scoped>
h1 {
font-weight: 500;
font-size: 2.6rem;
top: -10px;
}
h3 {
font-size: 1.2rem;
}
.greetings h1,
.greetings h3 {
text-align: center;
}
@media (min-width: 1024px) {
.greetings h1,
.greetings h3 {
text-align: left;
}
}
</style>
import { createApp } from 'vue' import Vue from 'vue';
import App from './App.vue' import ElementUI from 'element-ui';
import ElementPlus from 'element-plus'
import 'element-ui/lib/theme-chalk/index.css';
import App from './App.vue';
Vue.use(ElementPlus);
Vue.use(ElementUI);
import './assets/main.css' new Vue({
el: '#app',
createApp(App).mount('#app') render: h => h(App)
});
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册