摘要: 1.单文件上传 <template> <div> <label for="fileInput"> <i aria-hidden="true" class="cursor">上传文件</i> </label> <input v-show="false" type="file" id="fileInpu 阅读全文
posted @ 2020-12-23 15:14 蚂蚁工匠 阅读(1150) 评论(0) 推荐(0) 编辑
摘要: const cityOptions = [ { "code": "110000", "value": "北京市", "label": "北京市", "children": [ { "code": "110101", "value": "东城区", "label": "东城区" }, { "code" 阅读全文
posted @ 2021-01-26 16:39 蚂蚁工匠 阅读(4935) 评论(0) 推荐(0) 编辑
摘要: 过渡动画需要在index.html文件里面添加 1.css,在public.index.css创建index.css html, body, #app { height: 100%; margin: 0px; padding: 0px; } .chromeframe { margin: 0.2em 阅读全文
posted @ 2020-12-23 14:58 蚂蚁工匠 阅读(2259) 评论(0) 推荐(0) 编辑
摘要: 1.初始化本地仓库 git init 2.提交本地暂存区 git add . 3.提交本地git仓库 git commit -m "第一次提交" 4.第一次线上本地仓库连接 git remote add origin 远程仓库地址 5.第一次提交线上仓库mster分支 git push -u ori 阅读全文
posted @ 2020-12-23 14:54 蚂蚁工匠 阅读(82) 评论(0) 推荐(0) 编辑