会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Quinn
博客园
首页
新随笔
联系
订阅
管理
2024年1月7日
Vue ui 创建项目报错: ERROR Failed to get response from https://registry.npmjs.org/vue-cli-version-marker
摘要: 虽然不影响项目的创建,但看着不舒服 按【Ctrl + C】退出 vue ui 输入命令强制清除npm缓存:npm cache clean --force
阅读全文
posted @ 2024-01-07 16:00 Morita-desin
阅读(254)
评论(0)
推荐(0)
2024年1月3日
设置VSCode左边文档树文件夹不以紧凑形式呈现文件夹
摘要: 一个文件夹只有一个子文件夹时会出现如下情况: 对于笔者来说并不习惯 解决办法 打开【设置】=》【功能】=》【资源管理器】=》【Compact Folders】
阅读全文
posted @ 2024-01-03 16:12 Morita-desin
阅读(215)
评论(0)
推荐(0)
2023年10月31日
win10实现用VSCode打开文件夹
摘要: 1. 修改注册表 1.【Win+R】打开运行,输入【regedit】,打开【注册表】 2. 【HKEY_CLASSES_ROOT】 ==> 【*】 ==> 【shell],如果没有【shell】,则在【*】下右键,【新建】 ==> 项,建立【shell分支】 3. 【shell】下【新建】==> 【
阅读全文
posted @ 2023-10-31 23:39 Morita-desin
阅读(763)
评论(0)
推荐(0)
2023年10月20日
CSS水平垂直居中
摘要: 使用flex布局 <div class="content"> <div class="box"> </div> </div> .content{ height: 100vh; display: flex; justify-content: center; align-items: center; }
阅读全文
posted @ 2023-10-20 14:57 Morita-desin
阅读(10)
评论(0)
推荐(0)
2023年10月14日
彻底删除虚拟机VMware(win 10)
摘要: 1. 打开服务 2. 找到VMware开头的服务,右键【停止】 3. 使用Crtl+Shift+Esc打开任务管理器,找到以VMware打头命名的进程,右键【结束任务】 4. 在打开控制面板,点击【卸载程序】 5. 找到VMware 6. 右键更改 7. 点击【下一步】 8. 点击【删除】 9. 点
阅读全文
posted @ 2023-10-14 17:07 Morita-desin
阅读(715)
评论(0)
推荐(0)
HTML常用标签
摘要: HTML常用标签 标题标签 <h1>这是一级标题</h1> <h2>这是二级标题</h2> <h3>这是三级标题</h3> <h4>这是四级标题</h4> <h5>这是五级标题</h5> <h6>这是六级标题</h6> 段落与换行 <p>这是第一段</p> <p>这是第二段</p> <p>这是第一段
阅读全文
posted @ 2023-10-14 16:21 Morita-desin
阅读(21)
评论(0)
推荐(0)
CSS实现滚动条隐藏
摘要: 使用伪元素:::-webkit-scrollbar <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-
阅读全文
posted @ 2023-10-14 03:50 Morita-desin
阅读(52)
评论(0)
推荐(0)
2023年8月19日
JavaScript
摘要: JS 1. js导入方式 1.1 内部标签 <script> </script> 1.2 外部引用 a.js alert("hello js"); <script src="a.js"> </script> 2. 基本语法 <!DOCTYPE html> <html lang="en"> <head
阅读全文
posted @ 2023-08-19 19:52 Morita-desin
阅读(27)
评论(0)
推荐(0)
2023年8月17日
CSS3
摘要: CSS3 1. CSS导入方式 优先级:就近原则 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>css导入方式</title> <!-- 2.内部样式 --> <style> h2{ color: aqua
阅读全文
posted @ 2023-08-17 21:08 Morita-desin
阅读(15)
评论(0)
推荐(0)
JVM
摘要: JVM 1. JVM的位置 运行在操作系统上 2. jvm的体系结构 3. 类加载器 作用:加载class文件 虚拟机自带的加载器 启动类(根)加载器:JAVA_HOME\lib\jar包 or rt.jar 扩展类加载器:JAVA_HOME\lib\ext 应用程序(用户)加载器:classpat
阅读全文
posted @ 2023-08-17 19:50 Morita-desin
阅读(11)
评论(0)
推荐(0)
下一页
公告