- 博客(11)
- 收藏
- 关注
原创 上传vue项目到仓库
1.进入项目文件夹。git init2.git add *3.git commit "init gshop" //gshop是项目名称到此为止,本地仓库生成下一步,创建远程仓库4.git remote add origin https://....5.git push origin master账号 密码输一下
2022-02-12 11:56:24 427
原创 fastclick.js
import FastClick from 'fastclick'FastClick.attach(document.body);
2022-02-08 20:21:29 220
原创 插件不符合要求时
以stylus为例,首先查看它的版本。npm view stylus versions然后安装stylus 0.54.8 版本npm install stylus@0.54.8
2022-02-08 17:07:53 604
原创 改变库里面的样式
在vue项目中,当我们使用第三方组件库时,例如(element-ui、vant)时,遇到需要修改组件中第三方组件库中的样式,但同时又不想去除scoped属性造成组件之间的样式覆盖,这时,我们就可以使用样式穿透来解决这个问题...
2022-02-08 16:16:22 238
原创 防抖函数。。。。。
window.onload = function() { var p = document.getElementById('id')function v() { var t = p.value; //获取值 console.log(t); } function debounce...
2022-01-26 22:43:02 799
原创 vue.config.js
module.exports = {//关闭eslint lintOnSave:false}把讨厌的eslint关掉 关掉
2021-12-31 15:09:24 146
原创 vue jsconfig.json
{ "compilerOptions": { "target": "es2017", "allowSyntheticDefaultImports": false, "baseUrl": "./", "paths": { "@/*": ["src/*"] // 输入@就代表src } }, "exclude": ["node_modules", "dist"] // 除了node_modules和dist文件以外...
2021-12-31 15:08:29 653
原创 异步请求 小程序心得
async function(){let 变量 =awaitrequest(‘地址’);}异步不要写在生命周期上面,要写在方法上面。在生命周期函数里面用这个方法就可以了。
2021-12-23 11:49:23 497
原创 要把请求放在一个js文件里面
创建一个config.jsconfig.js里面写exportdefault{host:'http://localhost:3000'}创建一个request。js 以后每次请求都要引用这个文件。importconfigfrom'./config'exportdefault(url,data={},method='GET')=>{returnnewPromise((resolve,reject)=>{wx.re...
2021-12-23 11:46:31 422
原创 小程序bindscrolltolower多次触发
最开始是bindscrolltolower 无法触发console.log('ddd');没有反应网上查找资料是没有设置height: 设置了之后 发现console.log('ddd')多次触发解决方案handleToLower(){if(this.data.isScrolling===true)return;this.data.isScrolling=true;console.log(...
2021-12-23 11:43:11 690
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人