搭建一个vue2.0的项目
目录
搭建环境
使用脚手架搭建项目
配置路由
配置ajax-使用axios
完成
搭建环境
node
vue-cli
npm install -g vue-cli
使用脚手架搭建项目
cd 进入你的项目中然后运行yarn run dev 或者 npm run dev 就行了
配置路由
路由守卫--在router-index中添加
router.beforeEach((to, from, next) => {
if (to.meta.requireAuth) {
.
原创
2021-03-24 10:39:17 ·
258 阅读 ·
0 评论