Loading

摘要: changeOrigin 必须设置成 false const { defineConfig } = require('@vue/cli-service'); module.exports = defineConfig({ transpileDependencies: true, devServer: 阅读全文
posted @ 2023-11-17 14:13 小小的编程员 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 在script 中使用store https://blog.csdn.net/SubStar/article/details/116077737 <script> import { getCurrentInstance } from "vue"; import { useStore } from " 阅读全文
posted @ 2023-11-17 12:05 小小的编程员 阅读(3436) 评论(0) 推荐(0) 编辑
摘要: package.json 文件配置 { "name": "webpage", "version": "0.1.0", "private": true, "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service b 阅读全文
posted @ 2023-11-17 10:59 小小的编程员 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 1fr 表示剩余的100% 空间 1fr 的意思是“100%的剩余空间”, .25fr 意味着“25%的剩余空间”。当时当 fr 大于 1 的时候,则会重新计算比例来分配。 repeat 重复的变量 grid-template-columns:repeat(2,1fr)=grid-template- 阅读全文
posted @ 2023-11-12 15:22 小小的编程员 阅读(59) 评论(0) 推荐(0) 编辑
摘要: flex属性详解 juejin.cn溪阳 网页布局 最早的时候,网页排版通常是通过 table 元素实现的,在 table 的单元格里使用 align、valign 来实现水平和垂直方向的对齐 后来随着 html 语义化 和 CSS 的发展,浮动布局和定位布局也出现了,还有text-align: c 阅读全文
posted @ 2023-11-12 11:38 小小的编程员 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 宝塔 安装nginx nginx 根目录: /www/server/nginx/html 修改nginx 配置 下滑到70多行,添加 server 对象内容,内容如下 server { listen 82; server_name test2; location / { root html/test 阅读全文
posted @ 2023-11-03 12:46 小小的编程员 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 查看当前 java -version 此时观察到 java版本为 1.8, 需要更新到 jdk11 查看系统 环境变量设置 vim /etc/profile 在编辑器 页面,输入 set nu 向下滚动到指定位置 进入 /etc/profile.d cd /etc/profile.d 创建文件 vi 阅读全文
posted @ 2023-11-02 17:43 小小的编程员 阅读(8) 评论(0) 推荐(0) 编辑
摘要: @RequestBody , 需要使用 传入 json格式, 专门为了application/json和application/xml等设置的 会自动装配到 实体类中 代码 @RequestMapping(value="test3",method = RequestMethod.POST) publ 阅读全文
posted @ 2023-11-02 12:03 小小的编程员 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 基本的创建语句:grant all on . to 'root'@'%' identified by '123456' grant all 授予默认权限的操作,还有一种 grant to privilege授予全部权限 on *.* 表示所有数据库下的所有表 to 'root'@'%' 授予的角色信 阅读全文
posted @ 2023-10-29 18:28 小小的编程员 阅读(7) 评论(0) 推荐(0) 编辑
摘要: CSS命名注意事项: 1.一律小写; 2.尽量用英文; 3.不加中杠和下划线;[有特殊情况除外] 4.尽量不缩写,除非一看就明白的单词。 CSS文件名命名: 主要的 master.css 模块 module.css 基本共用 base.css 布局,版面 layout.css 主题 themes.c 阅读全文
posted @ 2023-10-20 16:01 小小的编程员 阅读(33) 评论(0) 推荐(0) 编辑