会员
T恤
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
bule蓝色
博客园
首页
新随笔
联系
管理
订阅
2025年3月25日
git push到 coding步骤(自用)
摘要: git init git remove add origin <coding地址> git pull origin master (如果合并出错了,就把本地的md文件的值全删了,再试下) git add . git commit -m 'edit' git push -u origin master
阅读全文
posted @ 2025-03-25 14:48 bule蓝色
阅读(3)
评论(0)
推荐(0)
2024年2月21日
mysql 安装教程
摘要: https://blog.csdn.net/weixin_39289696/article/details/128850498
阅读全文
posted @ 2024-02-21 15:23 bule蓝色
阅读(3)
评论(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蓝色
阅读(694)
评论(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蓝色
阅读(29)
评论(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蓝色
阅读(17)
评论(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蓝色
阅读(1290)
评论(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蓝色
阅读(13)
评论(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蓝色
阅读(831)
评论(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蓝色
阅读(1357)
评论(1)
推荐(0)
vite..config.ts中Cannot find module 'path' or its corresponding type declarations
摘要: ts中引入path模块出错 Cannot find module 'path' or its corresponding type declarations. 解决方法 第一步 npm install -D @types/node 第二步 在tsconfig.json中添加 "compilerOpt
阅读全文
posted @ 2022-10-19 11:09 bule蓝色
阅读(3096)
评论(0)
推荐(0)
下一页
公告
昵称:
bule蓝色
园龄:
7年5个月
粉丝:
0
关注:
1
<
2025年4月
>
日
一
二
三
四
五
六
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
更多链接
我的标签
vue
(9)
js
(5)
ts
(4)
git
(2)
react
(1)
pm2
(1)
node
(1)
Data
(1)
微信支付
(1)
模式
(1)
更多
随笔分类
css(1)
js(4)
nodejs(3)
react(1)
ts(2)
vue(11)
随笔档案
2025年3月(1)
2024年2月(1)
2023年10月(2)
2023年1月(1)
2022年11月(2)
2022年10月(3)
2022年7月(2)
2020年2月(1)
2019年11月(1)
2019年7月(3)
2019年5月(1)
2019年4月(3)
2019年3月(2)
2019年2月(2)
阅读排行榜
1. npm全局目录修改(3922)
2. vite..config.ts中Cannot find module 'path' or its corresponding type declarations(3096)
3. html 滚动条样式(2543)
4. linux安装nodejs运行vue程序(2138)
5. Vue 父组件ajax异步更新数据,子组件props获取不到(2007)
评论排行榜
1. pinia使用和数据持久化(cookie)(1)
最新评论
1. Re:pinia使用和数据持久化(cookie)
cookie这样做的话,原本number型的数据,页面刷新后就变成string型了
--前端cry
点击右上角即可分享