摘要:
1,记录一次步骤条来实现人数不同显示的进度不同 效果如图: 废话不多说 上代码: html文件: css 代码: 简单实现: ps有个弊端: 不能根据后端传入的数值来计算进度比例,只是写死的item来控制大概的进度,如果有更好的意见请留言给我 谢谢 阅读全文
摘要:
{ "editor.tabSize": 2, "files.associations": { "*.vue": "vue" }, "eslint.autoFixOnSave": true, "eslint.options": { "extensions": [ ".js", ".vue" ... 阅读全文
摘要:
链接: https://scrollrevealjs.org/ vue中使用: yarn add scrollreveal -D 页面中使用: 阅读全文
摘要:
1, $listeners 父级元素 <base-input v-on:focus.native="onFocus"></base-input> 子级元素 <label> {{ label }} <input v-bind="$attrs" v-bind:value="value" v-on:inp 阅读全文
摘要:
一,如何优化webpack构建 (1),缩小文件搜索范围, 优化Loader配置 1 module.exports = { 2 module: { 3 rules: [ 4 { 5 test:/\.js$/, 6 use:['babel-loader?cacheDirectory'], 7 incl 阅读全文
摘要:
本地分支推送到远程分支: (1),git init,git add . (2),git commit -m "首次提交" (3),git remote add origin '远程地址' (4),git push -u origin '分支' 在本地新建分支并推送到远程 git checkout - 阅读全文
摘要:
阿里云的帮助文档: https://help.aliyun.com/document_detail/66324.html?spm=a2c4g.11186623.6.555.187a2f1ckud2zL 必备条件: 阿里云的appkey 阅读全文