摘要: use db:进入或建立数据库(如果没有的话) db.集合.insert( ):插入数据 db.集合.find( ):查询所有数据 db.集合.findOne( ):查询第一个文件数据 db.集合.update({查询},{修改}):修改文件数据 show dbs :显示已有数据库 show col 阅读全文
posted @ 2019-11-22 18:12 lipu1993 阅读(95) 评论(0) 推荐(0)
摘要: 之前对router-view的理解一直有疑问,其实router-view会找到对应的路由进行渲染,并不会相互影响 从上到下渲染时遇到<router-view/>,则到路由设置中根据路径找到对应的组件进行渲染。 { path:"index", component:()=>import("@/compo 阅读全文
posted @ 2019-11-22 13:32 lipu1993 阅读(679) 评论(0) 推荐(0)
摘要: 克隆项目 git clone https://github.com/shanxilipu/lipuvuetest.git 添加修改后的neir git add a1.js 说明修改后的内容和提交 git commit -m '第三次'git push 阅读全文
posted @ 2019-11-22 12:15 lipu1993 阅读(86) 评论(0) 推荐(0)