摘要:
vue生命周期 个人公众号地址 vue2.x 选项式 API(Options API) 1、前置: eg: export default { name: "DevPoint", data() { return { num: "123", }; }, mounted() {} }; 代码的过程: Vu 阅读全文
摘要:
一、vite2.0+vue3.0+ts 创建、配置 个人公众号文章地址 个人github仓库地址 1、Vite 创建 vue3 项目: 1.1、npm 常用命令 1、npm 查看版本号 npm view 包 version —— 查看最新版本号 npm view 包 version ——查看所有版本 阅读全文
摘要:
1、get请求方式: axios.get(url[, config]) // 【字符拼接型】axios.get(url?id=123&status=0') // 等同于 axios.get(url,{ params: { id:123, status:0, }, }) 2、post请求方式: axi 阅读全文
摘要:
问题场景: 下图中的显隐密码和验证码均为包裹在 input标签 中的 image标签, 但在开发测试中发现点击不了这俩个image标签,因为是被input标签的padding挡住了。 解决方法:将image标签用position定位定到对应的位置 1、wxml: <view class="posit 阅读全文
摘要:
问题1:ec-canvas出现上下滑动页面会漂移 解决方法:在标签内加 force-use-old-canvas="true" 问题2:echarts的tooltip会超出边界 解决方法: // 1、封装的函数方法 export const setTooltipPosition = function 阅读全文
摘要:
computed: { // 同时监听多个参数 toWatch() { const { params1, params2 } = this.observeObj; return { params1, params2 }; }, }, watch: { toWatch(val) { const { p 阅读全文
摘要:
准备: const axios = require('axios'); // axios请求 const res = []; const arr = ["a", "b", "c", "d", "e"]; a(i) { return new Promise((resolve, reject) => { 阅读全文
摘要:
1、需要先安装homebrew(之前的文章里有) 2、安装git brew install git 3、安装node brew install node 3.1、安装成功后,查看版本号 node -v // 查看node版本 npm -v // 查看npm版本 3.2、Node.js的多版本管理器n 阅读全文
摘要:
1、背景: 一开始直接按照homebrew官网https://brew.sh的步骤安装失败 fatal: unable to access 'https://github.com/Homebrew/brew/': LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 阅读全文