会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
bule蓝色
博客园
首页
新随笔
联系
管理
订阅
2025年5月19日
win被锁,解决办法(自用)
摘要: 1.Cherry键盘被锁,按Fn+F9解决 2.误触组合件,导致win键被锁 a:按Fn+(左)win键关闭win键,按Fn+(右)win键启用win键。 b:按Fn+F12启用/关闭win键 (具体是哪个组合键因键盘而异)
阅读全文
posted @ 2025-05-19 10:54 bule蓝色
阅读(337)
评论(0)
推荐(0)
2025年3月25日
git push到 coding步骤(自用)
摘要: git init git remote add origin <coding地址> git pull origin master (如果合并出错了,就把本地的md文件的值全删了,再试下) git add . git commit -m 'edit' git push -u origin master
阅读全文
posted @ 2025-03-25 14:49 bule蓝色
阅读(8)
评论(0)
推荐(0)
2024年2月21日
mysql 安装教程
摘要: https://blog.csdn.net/weixin_39289696/article/details/128850498
阅读全文
posted @ 2024-02-21 15:23 bule蓝色
阅读(7)
评论(0)
推荐(0)
2023年10月20日
vue
摘要: Vue介绍 介绍Vue Vue是一套用于构建用户界面的渐进式框架。与其他大型框架不同的是,Vue被设计为可以自底向上逐层应用。Vue的核心库只关注视图层,不仅易于上手,还便于与第三方库或既有项目整合。 MVVM(Model-View-ViewModel)架构 View:视图层(UI用户界面) Vie
阅读全文
posted @ 2023-10-20 18:19 bule蓝色
阅读(866)
评论(0)
推荐(0)
2023年10月17日
nvm常用操作
摘要: windows中,nvm安装后在git bash 中不可用的话,是需要重启电脑的,因为nvm安装添加了系统环境!!!! 查看所有网络可以安装的版本 nvm list available 选择一个版本安装 nvm install 18.18.2 使用这个版本 nvm use 18.18.2 查看已经安
阅读全文
posted @ 2023-10-17 10:48 bule蓝色
阅读(52)
评论(0)
推荐(0)
2023年1月13日
react问题
摘要: 1.在setState中传递的值名字相同可省略前缀 this.state={temperature:'',scale:'c'} handleChange=(temperatue)=>{ this.setState=({scale:'f',temperatue}) } handleChange1=(t
阅读全文
posted @ 2023-01-13 17:12 bule蓝色
阅读(22)
评论(0)
推荐(0)
2022年11月23日
vite +vue3 项目搭建
摘要: 创建项目 npm create vite@latest demo 配置环境变量 vite 提供了开发模式和生产模式 这里我们可以建立 4 个 .env 文件,一个通用配置和三种环境:开发、测试、生产。 env文件中的变量名建议以VITE_APP开头,和vue cli中的VUE_APP相同 ,用法也一
阅读全文
posted @ 2022-11-23 18:23 bule蓝色
阅读(1306)
评论(0)
推荐(0)
git 操作(自用)
摘要: ###git 操作 git init git remote add origin https://#.git git pull origin fillcourse --allow-unrelated-histories git add -A git commit -m "init" git bran
阅读全文
posted @ 2022-11-23 18:22 bule蓝色
阅读(19)
评论(0)
推荐(0)
2022年10月25日
vite+ts+scss 设置多个scss公共样式不起作用
摘要: preprocessorOptions: { scss: { additionalData: `@use "./src/assets/scss/style.scss" as *;@use "./src/assets/scss/index.scss" as *;@use "./src/assets/s
阅读全文
posted @ 2022-10-25 14:09 bule蓝色
阅读(928)
评论(0)
推荐(0)
2022年10月19日
pinia使用和数据持久化(cookie)
摘要: pinia 简单使用 /store/modules/user import { defineStore } from 'pinia' /** * useStroe 可以是任意命名 * 第一个参数是应用程序中 store 的唯一 id */ export const userStroe = defin
阅读全文
posted @ 2022-10-19 17:56 bule蓝色
阅读(1440)
评论(1)
推荐(0)
下一页
公告