1、cmd——>vue ui
2、选择目录,创建,选择插件
手动创建: router、vuex打开,formatter关掉(选vue2)
外加插件:axios用于后期封装,element用于ui
3、idea打开工程
此时发现插件已经引入了。
springboot+vue写起来的时间会比较快,很多都是之间生成。
跑一下确保运行成功:
3、创建第一个页面
引入Login.vue,设置路由,path、component映射,不可少
展示的页面最终只有App.vue, 要通过路由动态(router-view)切换,所以需要改默认生成的App.vue代码:
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script setup>
</script>