摘要:
自定义 tabbar 字体图标不显示问题 问题 在 app.wxss 引入了阿里图标导入的样式 iconfont.wxss,但是在自定义 custom-tab-bar 中不显示 解决 在 custom-tab-bar 的 index.wxss 中导入字体图标样式@import "../styles/ 阅读全文
摘要:
1.注册登录 微信公众平台 https://mp.weixin.qq.com/ 设置小程序信息 2.下载微信开发者工具 :稳定版 Stable Build https://developers.weixin.qq.com/miniprogram/dev/devtools/stable.html 3. 阅读全文
摘要:
在 page 中修改组件内部样式 wxml custom-class="van-search-custom-class" <van-search custom-class="van-search-custom-class" value="{{ value }}" input-align="cente 阅读全文
摘要:
去除 PWA 插件 去除 package.json 中的 PWA 依赖 从新 npm install "devDependencies": { ... - "@vue/cli-plugin-pwa": "^4.4.0", ... } ESlint ESlint 开启保存校验 vue.config.j 阅读全文
摘要:
打包 vue web 项目 1.修改 build 的配置 在 vue-cli(4.x 版本)下,修改 vue.config.js, 如果没有就创建一个 module.exports = { // 选项... publicPath: "./", }; 2.修改路由模式为 hash 模式 如果使用了路由 阅读全文
摘要:
Remote-SSH 插件 文章地址 遇到的问题 如果报管道错误,可能是以下问题 你的Linux服务器的ssh配置有问题,通过修改配置测试是否解决问题。 删除在服务器上创建的“ .vscode-server”目录。这是在主目录中创建的隐藏目录(您可以使用“ ls -la”显示我相信的所有文件)。可能 阅读全文
摘要:
创建项目 npx create-react-app antd-demo 安装 antd yarn add antd 高级配置 yarn add -D babel-plugin-import react-app-rewired customize-cra less less-loader@5.0.0 阅读全文
摘要:
react-router-dom v6.0 基础用法 import React from "react"; import { BrowserRouter as Router, Route, Routes } from "react-router-dom"; import "../styles/glo 阅读全文
摘要:
创建一个 npm 账号 创建一个 npm 账号 本地添加账号 $ npm adduser npm notice Log in on https://registry.npmjs.org/ Username: username Password:xxx Email: (this IS public) 阅读全文
摘要:
Nginx 学习 nginx 常用的命令: (1)启动命令 在/usr/local/nginx/sbin 目录下执行 ./nginx (2)关闭命令 在/usr/local/nginx/sbin 目录下执行 ./nginx -s stop (3)重新加载命令 在/usr/local/nginx/sb 阅读全文