提交 01b151b8 编写于 作者: Q qq_63480508

Auto Commit

上级 462eed65
......@@ -7,6 +7,7 @@
"preview": "vite preview --port 4173"
},
"dependencies": {
"element-plus": "^2.9.6",
"element-ui": "^2.15.14",
"guess": "^1.0.2",
"vue": "^3.2.37"
......
......@@ -79,9 +79,7 @@
import { ref } from 'vue';
export default {
components: {
edit
},
setup() {
const selectedOption = ref('');
const searchContent = ref('');
......
import Vue from 'vue';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
import { createApp } from 'vue';
import ElementPlus from 'element-plus';
import 'element-plus/dist/index.css';
import App from './App.vue';
Vue.use(ElementUI);
new Vue({
el: '#app',
render: h => h(App)
});
const app = createApp(App);
app.use(ElementPlus);
app.mount('#app');
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册