01 2022 档案

摘要:1.文件结构(如下) 2.代码 1)index.html <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta http-equ 阅读全文
posted @ 2022-01-25 11:47 蜗牛的礼物 阅读(192) 评论(0) 推荐(0) 编辑
摘要:1.终端执行命令 npm install vue-router --save 2.创建index.js配置文件 import Vue from 'vue' import VueRouter from 'vue-router' const Home = () => import('../view/ho 阅读全文
posted @ 2022-01-13 16:31 蜗牛的礼物 阅读(38) 评论(0) 推荐(0) 编辑
摘要:1.项目新增vue.config.js module.exports = { configureWebpack:{ resolve:{ alias:{ 'assets':'@/assets', 'common':'@/common', 'components':'@/components', 'ne 阅读全文
posted @ 2022-01-13 15:27 蜗牛的礼物 阅读(283) 评论(0) 推荐(0) 编辑
摘要:1.创建vue项目 vue create 项目名 2.在gitHub上创建项目 3.git项目库链接 git clone 地址 注:地址 4. 复制相关项目文件到gitHub项目中 5.查看git状态(未上传的文件) git status 6.上传添加项目文件 git add . git commi 阅读全文
posted @ 2022-01-11 15:26 蜗牛的礼物 阅读(78) 评论(0) 推荐(0) 编辑
摘要:1.安装(用了阿里的镜像路径,所以使用cnpm) cnpm install axios --save 2.建立src=》network=》request.js import axios from 'axios' export function request(config){ return new 阅读全文
posted @ 2022-01-10 14:36 蜗牛的礼物 阅读(556) 评论(0) 推荐(0) 编辑