BillBie

导航

上一页 1 2 3 4 5 6 7 ··· 11 下一页

2022年5月16日 #

better-scroll 禁用了鼠标滑动和点击

摘要: mouseWheel: true 改为true click:true 阅读全文

posted @ 2022-05-16 21:51 BillBie 阅读(164) 评论(0) 推荐(0) 编辑

2022年5月15日 #

css 图片包含在div中以及等比例缩放

摘要: img标签可设置 object-fit:属性 contain 会将所有包含进去缩放显示,此时注意设置width,height =100% cover 会自适应裁剪 想事项等比例缩放适应宽高,则参考文章:https://blog.csdn.net/IT_lukaifang/article/detail 阅读全文

posted @ 2022-05-15 15:14 BillBie 阅读(485) 评论(0) 推荐(0) 编辑

2022年5月14日 #

vue3定义全局变量方法变更及$on废弃

摘要: 在vue2中,直接 Vue.prototype.$bus = new Vue() 但是在vue3中,方法改变了(因为$on方法的废弃,需要用到mitt) const app = createApp(App) app.config.globalProperties.$bus = new mitt(); 阅读全文

posted @ 2022-05-14 01:11 BillBie 阅读(1445) 评论(0) 推荐(0) 编辑

vue在子组件向父组件emit时,父组件会警告;

摘要: Extraneous non-emits event listeners (swiperimageload) were passed to component but could not be automatically inherited because component renders fra 阅读全文

posted @ 2022-05-14 00:55 BillBie 阅读(787) 评论(0) 推荐(0) 编辑

2022年5月12日 #

data动态获取props 中的数据

摘要: props是在开发时,预先设置好,传给组件的。在运行过程中,这些设置是一锤子买卖,以后就不起作用了。假如我们想调用该组件的一个方法,而该方法又依赖于props,问题就出来了:props是旧的。 在组件内部,应该依赖于data,而data的初始值来自于props 当前data 想从props 进行初始 阅读全文

posted @ 2022-05-12 11:37 BillBie 阅读(1118) 评论(0) 推荐(0) 编辑

2022年5月10日 #

js 中NaN 的特性

摘要: NaN 是一种数据类型,表明为 不是数字的类型 常出现在 使用Number(),parseInt() 转换为数字中,当不是数字时,则返回NaN 在实际应用中 需要判断能否转换成功,无法使用。xx NaN 的方式,因为都是返回false js提供了一个方法:isNaN 阅读全文

posted @ 2022-05-10 23:43 BillBie 阅读(178) 评论(0) 推荐(0) 编辑

vue3文件中 scoped 的作用及穿透

摘要: 在vue文件中的style标签上,有一个特殊的属性:scoped。当一个style标签拥有scoped属性时,它的CSS样式就只能作用于当前的组件,也就是说,该样式只能适用于当前组件元素。通过该属性,可以使得组件之间的样式不互相污染。如果一个项目中的所有style标签全部加上了scoped,相当于实 阅读全文

posted @ 2022-05-10 22:40 BillBie 阅读(732) 评论(0) 推荐(0) 编辑

css 设置文本 水平垂直居中

摘要: display: flex;justify-content: center;align-items: center; 阅读全文

posted @ 2022-05-10 18:41 BillBie 阅读(19) 评论(0) 推荐(0) 编辑

git 常见命令

摘要: git remote rm origin -- 删除远程仓库 remote add origin 仓库地址 -- 新增远程仓库 git commit -m 'update' --提交 git push -u origin master -- push到远程仓库 阅读全文

posted @ 2022-05-10 13:40 BillBie 阅读(9) 评论(0) 推荐(0) 编辑

vue中axios跨域问题

摘要: 在新版本的vue中使用的是和package.json同级别路径中的vue.config.js module.exports = { devServer: { proxy: 'https://api.xxx.com/v1' }} 转载自:https://blog.csdn.net/lpwmm/arti 阅读全文

posted @ 2022-05-10 10:52 BillBie 阅读(25) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 11 下一页