会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
chenyongTao
尘世多浮
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
上一页
1
2
3
4
5
6
7
8
9
下一页
2019年12月5日
display: none, visibility: hidden 和 opacity: 0的比较
摘要: https://blog.csdn.net/weixin_44827421/article/details/91960637
阅读全文
posted @ 2019-12-05 21:42 chenyongTao
阅读(207)
评论(0)
推荐(0)
编辑
2019年10月29日
单位换算方法k、bk、。。。。
摘要: bytesToSize (bytes) { if (bytes 0) return '0B' var symbols = ['bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'] var exp = Math.floor(Math.log(b
阅读全文
posted @ 2019-10-29 09:18 chenyongTao
阅读(752)
评论(0)
推荐(0)
编辑
2019年8月16日
vue、nuxt性能优化
摘要: 1、 Vue 会通过 Object.defineProperty 对数据进行劫持,来实现视图响应数据的变化,然而有些时候我们的组件就是纯粹的数据展示,不会有任何改变,我们就不需要 Vue 来劫持我们的数据,在大量数据展示的情况下,这能够很明显的减少组件初始化的时间,那如何禁止 Vue 劫持我们的数据
阅读全文
posted @ 2019-08-16 10:44 chenyongTao
阅读(1099)
评论(0)
推荐(0)
编辑
nuxt.js 引入第三方插件报window is not defined
摘要: 已引入的 vue-seamless-scroll插件为例
阅读全文
posted @ 2019-08-16 10:00 chenyongTao
阅读(3487)
评论(0)
推荐(0)
编辑
2019年8月7日
webstorm 设置js或者html文件自动缩进为4个空格不生效
摘要: 转载自 https://blog.csdn.net/weixin_34123613/article/details/86007465
阅读全文
posted @ 2019-08-07 14:17 chenyongTao
阅读(1023)
评论(0)
推荐(0)
编辑
2019年8月1日
调用接口缓存数据
摘要: mounted () { this.initBtnConfig() }, watch: {}, methods: { async getbBannerBtnConfig () { let res = null try { res = await bannerBt...
阅读全文
posted @ 2019-08-01 15:29 chenyongTao
阅读(892)
评论(0)
推荐(0)
编辑
2019年6月29日
node 版本更新
摘要: 1、打开cmd命令窗口,windows键+R,输入cmd确认,打开cmd窗口之后,输入node -v命令,先查看下当前nodejs的版本2、如果上面查看的版本比较低,则可以开始升级清除npm cache3、升级之前还需要安装n模块,n模块是专门用来管理nodejs的版本输入npm install -
阅读全文
posted @ 2019-06-29 10:56 chenyongTao
阅读(12320)
评论(0)
推荐(1)
编辑
2019年6月25日
监听2个值的变化,后执行方法
摘要: data() { return { city: '', country: '' } }, computed: { address() { const { city, country } = this return { city, country } } }, watch: { address: { han...
阅读全文
posted @ 2019-06-25 13:39 chenyongTao
阅读(554)
评论(0)
推荐(0)
编辑
2019年6月18日
vue 中根据地址名称获取实际经纬度方法
摘要:
阅读全文
posted @ 2019-06-18 16:24 chenyongTao
阅读(6215)
评论(0)
推荐(1)
编辑
2019年6月14日
去除空格
摘要: { var str=str.replace(/<\/?[^>]*>/gim,"");//去掉所有的html标记 var result=str.replace(/(^\s+)|(\s+$)/g,"");//去掉前后空格 return result.replace(/\s/g,"");//去除文章中间空
阅读全文
posted @ 2019-06-14 14:39 chenyongTao
阅读(194)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
9
下一页