摘要: 虽然不影响项目的创建,但看着不舒服 按【Ctrl + C】退出 vue ui 输入命令强制清除npm缓存:npm cache clean --force 阅读全文
posted @ 2024-01-07 16:00 Morita-desin 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 一个文件夹只有一个子文件夹时会出现如下情况: 对于笔者来说并不习惯 解决办法 打开【设置】=》【功能】=》【资源管理器】=》【Compact Folders】 阅读全文
posted @ 2024-01-03 16:12 Morita-desin 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 1. 修改注册表 1.【Win+R】打开运行,输入【regedit】,打开【注册表】 2. 【HKEY_CLASSES_ROOT】 ==> 【*】 ==> 【shell],如果没有【shell】,则在【*】下右键,【新建】 ==> 项,建立【shell分支】 3. 【shell】下【新建】==> 【 阅读全文
posted @ 2023-10-31 23:39 Morita-desin 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 使用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 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. 打开服务 2. 找到VMware开头的服务,右键【停止】 3. 使用Crtl+Shift+Esc打开任务管理器,找到以VMware打头命名的进程,右键【结束任务】 4. 在打开控制面板,点击【卸载程序】 5. 找到VMware 6. 右键更改 7. 点击【下一步】 8. 点击【删除】 9. 点 阅读全文
posted @ 2023-10-14 17:07 Morita-desin 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 使用伪元素:::-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 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(1) 评论(0) 推荐(0) 编辑