网站首页
编程语言
数据库
系统相关
其他分享
编程问答
vite6.0
2024-12-20
vue3.5.13 + vite6.0.1搭建前端项目的配置文件
main.js//vue版本为3.5.13import{createApp}from'vue'import'./style.css'importAppfrom'./App.vue'import'element-plus/dist/index.css'importrouterfrom'./router/index'constapp=createApp(App)