Live2D
摘要: 修改Maven安装目录下/conf/settings.xml文件 找到在这里面 加入国内镜像源·华为云和阿里云提供的镜像 <mirror> <id>HuaweiCloud</id> <mirrorOf>*,!HuaweiCloudSDK</mirrorOf> <url>https://mirrors 阅读全文
posted @ 2020-08-16 17:40 墨雪染殇 阅读(235) 评论(0) 推荐(0)
摘要: 详情参考我的Gitee博客 博客地址:https://gitee.com/jiangxianfly/cnblogs-theme 阅读全文
posted @ 2020-08-05 22:06 墨雪染殇 阅读(99) 评论(0) 推荐(1)
摘要: 本地仓库更新.gitignore 后生效方法,懒得每次网上查,于是记录到自己的博客。 1 git rm -r --cached . # 清除缓存 2 git add . # 追踪文件 3 git commit -m "更新.gitignore" # 注释提交 4 git push origin ma 阅读全文
posted @ 2020-06-20 11:55 墨雪染殇 阅读(960) 评论(0) 推荐(0)
摘要: 一、数组的解构赋值 // 基本赋值 let [a,b,c]=["q","w","e"]; console.log(a,b,c);//q w e // 嵌套结构 let [fruits,[apple,banana,pear],vegetables]=["水果",["苹果","香蕉","梨"],"蔬菜" 阅读全文
posted @ 2020-06-06 14:42 墨雪染殇 阅读(243) 评论(0) 推荐(0)
摘要: 在使用avue表单时,若想在表单中进行数据请求时,可以使用下面的方法: { label: "补贴类型", prop: "sub_type_msg", search: true, type: "select", dicUrl: "/admin/hadoop/not_auth/subType", dic 阅读全文
posted @ 2020-06-05 14:40 墨雪染殇 阅读(7740) 评论(1) 推荐(0)