SpringBoot2 + Vue2 项目实战集成ElementUI及整体框架搭建
// 在SpringBoot2项目的pom.xml中添加ElementUI依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- 引入ElementUI依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
// 在resources/static/index.html中引入ElementUI的CSS和JS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ElementUI Example</title>
<!-- 引入ElementUI的CSS -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
</head>
<body>
<div id="app">
<!-- 这里是Vue组件 -->
</div>
<!-- 引入Vue -->
<script src="https://unpkg.com/vue@2.6.14/dist/vue.min.js"></script>
<!-- 引入ElementUI的JS -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<script>
// Vue实例
new Vue({
el: '#app',
// 其他Vue配置
});
</script>
</body>
</html>
这个代码实例展示了如何在SpringBoot2项目中集成ElementUI,并在index.html中引入所需的CSS和JS文件。在Vue实例中,我们通常会配置组件、路由、状态管理等。这个例子是整个项目的起点,为后续的开发提供了基础框架。
评论已关闭