上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 64 下一页
  2020年10月14日
摘要: 阅读全文
posted @ 2020-10-14 21:08 ygunoil 阅读(799) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-10-14 21:04 ygunoil 阅读(119) 评论(0) 推荐(0) 编辑
  2020年9月21日
摘要: 原文:https://dev.to/voluntadpear/comparing-react-hooks-with-vue-composition-api-4b32 Vue 最近提出了 Composition API RFC,一种新的书写 Vue 组件的 API;该 API 受到 React Hoo 阅读全文
posted @ 2020-09-21 11:30 ygunoil 阅读(1460) 评论(0) 推荐(0) 编辑
摘要: vue3 英文版:https://v3.vuejs.org/guide/introduction.html vue3 中文版:https://v3.cn.vuejs.org/ https://vue3js.cn/ vue3源码: https://vue-js.com/learn-vue/ 对应vue 阅读全文
posted @ 2020-09-21 11:02 ygunoil 阅读(245) 评论(0) 推荐(0) 编辑
摘要: Vue 团队于 2020 年 9 月 18 日晚 11 点半发布了 Vue 3.0 版本,我们连夜对 Release 进行了翻译。由于时间仓促,文中如有翻译不当的地方还望提出。如有侵权,请联系删帖。以下为译文正文。原文:https://github.com/vuejs/vue-next/releas 阅读全文
posted @ 2020-09-21 10:52 ygunoil 阅读(306) 评论(0) 推荐(0) 编辑
  2020年9月15日
摘要: 总结: 伪类本质上是为了弥补常规CSS选择器的不足,以便获取到更多信息; 伪元素本质上是创建了一个有内容的虚拟容器; CSS3中伪类和伪元素的语法不同; 伪类 :link :hover 伪元素 ::before ::after 可以同时使用多个伪类,而只能同时使用一个伪元素; 其中伪类和伪元素的根本 阅读全文
posted @ 2020-09-15 15:30 ygunoil 阅读(760) 评论(0) 推荐(0) 编辑
摘要: 父组件和子组件之间的生命周期执行顺序 初次渲染就会触发的生命周期 beforeCreate() , created() beforeMount() , mounted() 组件的调用顺序都是先父后子,渲染完成的顺序是先子后父。 组件的销毁操作是先父后子,销毁完成的顺序是先子后父。 加载渲染过程 子组 阅读全文
posted @ 2020-09-15 10:46 ygunoil 阅读(3376) 评论(1) 推荐(1) 编辑
  2020年9月14日
摘要: 1. 修改本地hosts文件 windows系统的hosts文件的位置如下:C:\Windows\System32\drivers\etc\hosts mac/linux系统的hosts文件的位置如下:/etc/hosts 2. 增加http://github.global.ssl.fastly.n 阅读全文
posted @ 2020-09-14 11:47 ygunoil 阅读(327) 评论(0) 推荐(0) 编辑
  2020年9月9日
摘要: 使用pip命令的时候报failed to create process 1、错误提示窗口如下图 2、报这个错误的原因,是因为你改动了python的目录名称或位置。因为,我的电脑是安装了anaconda2和anaconda3的,我想让python2和python3共存,就将anaconda2和anac 阅读全文
posted @ 2020-09-09 17:42 ygunoil 阅读(320) 评论(0) 推荐(0) 编辑
  2020年9月7日
摘要: 操作 mysql MongoDB 连接数据库 mysql -h 地址 -u 用户名 -p密码 打开mongo自动连接本地 查看主机上的所有数据库 show databases; show dbs 使用或转到新建某数据库 use dbName;/ create database dbName; use 阅读全文
posted @ 2020-09-07 18:10 ygunoil 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 64 下一页