03 2022 档案
摘要:优化:确定secondRules的数据在secondFlag改变之前进行赋值 可以用$nextTick来执行,不用setTimeOut ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
阅读全文
摘要:本地代码提交到新建的仓库中 1. # 看本地有无.git 文件 如果没有就 git init 2.把文件添加到仓库 git add . 3.提交代码 git commit -m '提交的信息' 4.本地仓库与远程仓库关联 git remote set-url origin 仓库地址 5.本地推送到仓
阅读全文
摘要:项目背景:webpack+js+seajs 引入文件用require或者define 1.下载依赖包 npm install babel-polyfill 2.引入该依赖:webpack.config.js中 module.exports = { entry: { "main": ["babel-p
阅读全文