摘要:
参考:https://www.cnblogs.com/yuri2016/p/7045709.html 阅读全文
摘要:
1. yarn add vue-resource 2. main.js引入vue-resource 3. About.vue 阅读全文
摘要:
组件绑定事件时 1. 普通组件绑定事件不能添加.native, 添加后事件失效 2. 自定义组件绑定事件需要添加.native, 否则事件无效 阅读全文
摘要:
vue不推荐直接在子组件中修改父组件传来的props的值,会报错 [Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-rende 阅读全文
摘要:
或是 在main.js中接收,test.js使用export default 向外暴露的成员 注意: 1、export default 向外暴露的成员,可以使用任意变量来接收 2、在一个模块中,export default 只允许向外暴露一次 3、在一个模块中,可以同时使用export defaul 阅读全文
摘要:
1、根目录配置 vue.config.js, 设置入口文件: index.js 2、index.js 3、APP.vue 阅读全文
摘要:
1、render方法的实质就是生成template模板(在#app的作用域里) 2、render是vue2.x新增的一个函数, 这个函数的形参是h 3、vue调用render方法时, 会传入一个createElement函数作为参数(也就是h的实参是createElement函数) 4、create 阅读全文
摘要:
preset:预设 vue create demo01 过程中,会保存预设,自动保存着 .vuerc 文件中 .vuerc 文件的位置:C:\Users\Administrator C:\Users\Administrator 阅读全文
摘要:
区别: 1.行内元素与块级函数可以相互转换,通过修改display属性值来切换块级元素和行内元素,行内元素display:inline,块级元素display:block。 2.行内元素和其他行内元素都会在一条水平线上排列,都是在同一行的; 块级元素却总是会在新的一行开始排列,各个块级元素独占一行, 阅读全文
摘要:
Chrome中调试网站,会出现 这是由 crxMouse Chrome™ 手势 引起的,关闭即可 阅读全文