- 博客(5)
- 收藏
- 关注
原创 基于Vue 路由守卫的登录功能
基于Vue 路由守卫的登录功能 登录功能的实现(基于Elementui) login() { //elementui表单的判断,给组件添加refs,通过$refs得到组件,进行登录校验 this.$refs.loginFormRef.validate(async (valid) => { if (!valid) return //data重命名为res // 使用await和async解析promise对象 const { data: res } = awai
2021-07-12 20:49:23
453
原创 项目托管到码云上
项目托管到码云上 第一次需要设置公钥 仓库创建成功后首先在项目根路径使用命令行窗口打开(cmd) 使用git status 检查项目状态 git add . 添加文件 git commit -m “add files” 本地提交 git status 再次检查 再执行码云仓库提示的已有仓库的代码 查看是否成功可以刷新码云仓库 ...
2021-05-08 22:38:16
110
原创 Vue中父子传值的那些问题
父传子 1.父传子 **父:自定义属性名 + 数据(要传递)=> :value=“数据” ** 子:props ["父组件上的自定义属性名“] =>进行数据接收 father.vue <template> <div> 我是爸爸:{{ message }} <hr /> <Son :toSonData1="toSonData"></Son> :toSonDate1 于子组件props接受的
2021-05-02 10:39:20
233
原创 在Vue中利用axios请求api
配置axios 导入axios import axios from ‘axios’ 用axios创建实例,全局配置axios请求的根路径 把axios挂在到Vue原型对象上 Vue.prototype.$http = axios.create({ baseURL:‘根路径’, }) Vue 方法中 methods: { async 方法名() { const { data } = await this.$http.get(“请求api”); // console.log(data); }, }, 最后在c
2021-04-18 11:17:46
152
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人