摘要: 1、打开文件=》首选项=》设置,在下图的用户中找到 扩展=》Vetur ,点击 在settings.json 中编辑 2、在settings.json 中添加如下代码 "vetur.format.defaultFormatterOptions": { "js-beautify-html": { "w 阅读全文
posted @ 2022-07-14 09:46 快了星球 阅读(1355) 评论(0) 推荐(0)
摘要: 注意在哪一行需要显示省略号,就给那个表头加 show-overflow-tooltip 阅读全文
posted @ 2022-07-07 09:16 快了星球 阅读(308) 评论(0) 推荐(0)
摘要: <!-- excel工具 --> <!-- xls 03 --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>4.1.2</version> </dependency> <! 阅读全文
posted @ 2022-07-06 11:30 快了星球 阅读(32) 评论(0) 推荐(0)
摘要: SpringCloud(1)--入门、版本、环境搭建 SpringCloud(2)--服务注册与发现(Eureka、Zookeeper、Consul) SpringCloud(3)--服务调用(Ribbon、OpenFeign) SpringCloud(4)--服务降级(Hystrix、降级、熔断、 阅读全文
posted @ 2022-07-05 13:30 快了星球 阅读(341) 评论(0) 推荐(0)
摘要: 基本步骤: 1. 封装全局监听方法:在main.js中给Vue.protorype注册全局方法。约定监听的sessionStorage的值为"watchStorage",然后创建StorageEvent方法,当执行sessionStorage.setItem(k, val) 时,初始化事件,并派发事 阅读全文
posted @ 2022-06-30 16:01 快了星球 阅读(146) 评论(0) 推荐(0)
摘要: # mysql spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/movebooking?serverTimezone=GMT%2b8 username: 阅读全文
posted @ 2022-06-30 14:11 快了星球 阅读(99) 评论(0) 推荐(0)
摘要: 1、npm audit fix2、npm audit fix --force3、npm audit TRANSLATE with x English Arabic Hebrew Polish Bulgarian Hindi Portuguese Catalan Hmong Daw Romanian 阅读全文
posted @ 2022-06-19 20:07 快了星球 阅读(16) 评论(0) 推荐(0)
摘要: <!--mybatiplus引入--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.5.1</version> </depende 阅读全文
posted @ 2022-06-19 15:58 快了星球 阅读(61) 评论(0) 推荐(0)
摘要: :model="loginForm" :rules="rules" <el-form-item prop="username"> 联系方式:<el-input style="width: 300px" type="text" v-model="loginForm.username" auto-com 阅读全文
posted @ 2022-06-17 17:34 快了星球 阅读(2055) 评论(0) 推荐(0)
摘要: 自定义工具类utils 创建js文件 import axios from "axios"; const request = axios.create({ baseURL: 'http://localhost:3000', }) export default request main.js全局引入 / 阅读全文
posted @ 2022-06-16 21:20 快了星球 阅读(145) 评论(0) 推荐(0)