摘要: watch(source,callback,options) 官方术语:侦听一个或多个响应式数据源,并在数据源变化时调用所给的回调函数。 watchEffect(effect,options) 官方术语:立即运行一个函数,同时响应式地追踪其依赖,并在依赖更改时重新执行。 总结: watch: 默认仅 阅读全文
posted @ 2022-11-30 18:26 Merrys 阅读(883) 评论(0) 推荐(0) 编辑
摘要: 关于样式 rpx(responsive pixel): 可以根据屏幕宽度进行自适应。规定屏幕宽为750rpx。如在 iPhone6 上,屏幕宽度为375px,共有750个物理像素,则750rpx = 375px = 750物理像素,1rpx = 0.5px = 1物理像素; nvue:native 阅读全文
posted @ 2022-11-19 20:10 Merrys 阅读(289) 评论(0) 推荐(0) 编辑
摘要: ERROR:Node Sass version 7.0.1 is incompatible with ^4.0.0. 项目:vue create -p dcloudio/uni-preset-vue my-project 环境:Now using node v16.18.1 (npm v8.19.2 阅读全文
posted @ 2022-11-19 11:15 Merrys 阅读(422) 评论(0) 推荐(0) 编辑
摘要: degit 直接了当的脚手架!straightforward project scaffolding[ˈskæfəldɪŋ]. 安装 npm install -g degit 使用degit复制git仓库。当运行 degit some-user/some-repo 命令行时,degit会找到git  阅读全文
posted @ 2022-11-17 22:11 Merrys 阅读(1576) 评论(0) 推荐(0) 编辑
摘要: curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash nvm:command not fount cd ~/.nvm open .bash_profile ### add export 阅读全文
posted @ 2022-11-17 22:10 Merrys 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 新创建一个class类实现Vuex基本功能 将store注入Vue实例和Vue组件中 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device- 阅读全文
posted @ 2020-04-21 14:13 Merrys 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 教程备份 flutter sample中的例子~ 导航: AnimatedList 删除和新增带动画效果的列表; TabBar&&TabBarView&&DefaultTabController&&TabPageSelector 标签页 ListView&&ExpansionTile 基于Expan 阅读全文
posted @ 2019-12-30 14:52 Merrys 阅读(684) 评论(0) 推荐(0) 编辑
摘要: 处理超时工具 function createFunctionWithTimeout(callback, opt_timeout) { 指定不同的传输机制 默认情况下,gtag.js 会选择 HTTPS 方法和传输机制以优化匹配的发送。三个选项包括: 'image'(使用 Image 对象) 'xhr 阅读全文
posted @ 2019-12-24 10:16 Merrys 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 安装nodejs包 安装YARN 安装pm2 安装nginx 修改nginx配置,代理 将项目上传到服务器,修改package.config 修改项目axios baseUrl 打包项目 开启项目 阅读全文
posted @ 2019-12-23 09:23 Merrys 阅读(1904) 评论(0) 推荐(0) 编辑
摘要: safari 长页面滚动卡顿 body { height: 100vh; overflow-y: hidden } .wrapper { overflow-y: auto; -webkit-overflow-scrolling: touch; } 页面滚动到某个dom处 document.getEl 阅读全文
posted @ 2019-09-02 17:51 Merrys 阅读(159) 评论(0) 推荐(0) 编辑