摘要: .active::before { width: 8px; height: 4px; display: inline-block; border: 2px solid #ffffff; border-width: 0 0 1px 1px; transform: rotate(-45deg); -ms 阅读全文
posted @ 2024-12-19 17:12 羽鱼 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 宝塔>软件商店->搜索->Supervisor->安装 进程守护管理器 ->设置 添加守护进程->运行目录->启动命令 注意 启动用户 和 网站所有者 要一致 不然会导致日志文件权限问题 阅读全文
posted @ 2024-11-29 10:05 羽鱼 阅读(8) 评论(0) 推荐(0) 编辑
摘要: module.exports = { // ... devServer: { proxy: { '/api': { target: 'https://your-backend-server.com', changeOrigin: true, secure: false, // 设置为false来跳过 阅读全文
posted @ 2024-11-25 09:40 羽鱼 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 老项目一直正常 现在因为有个应用要部署到新服务器; 但是后台前端 得和老项目一起~~~ 新建的 TP6项目 版本和老的是一样的~ 不管怎么配置多会出现 自定义 header 字段 Access-Control-Allow-Headers 跨越 问题 ! 中间件也多配置的和原来的一样!!!! 整了大半 阅读全文
posted @ 2024-11-20 16:13 羽鱼 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Vue.use(Vuex) const store = new Vuex.Store({ state: { "theme": "theme-red", }, mutations: { setTheme(state, theme) { state.theme = theme }, }, actions 阅读全文
posted @ 2024-08-21 16:44 羽鱼 阅读(22) 评论(0) 推荐(0) 编辑
摘要: props:{ value:Number,},model:{ prop: 'value', // 指定 v-model 要绑定的参数叫什么名字,来自于 props 中定义的参数 event: 'change', // 指定要触发的事件名字,将被用于 $emit},computed: { inputD 阅读全文
posted @ 2024-08-16 16:18 羽鱼 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 官方文档Overview | Casbin 编辑器Editor | Casbin 下方内容主要来源官方文档 在Casbin中,访问控制模型被抽象为基于**PERM元模型(策略,效果,请求,匹配器)**的CONF文件。 为项目切换或升级授权机制就像修改配置一样简单。 您可以通过组合可用模型来定制自己的 阅读全文
posted @ 2024-04-11 09:46 羽鱼 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 在Vue3的<script setup>模式下,往往会忽略 name; 但是在keep-alive等情况下又需要用到! 方法1: <script lang="ts"> export default { name: "my-component" } </script> <script lang="ts 阅读全文
posted @ 2024-04-09 17:14 羽鱼 阅读(1692) 评论(0) 推荐(0) 编辑
摘要: //加上typeimport type { AxiosInstance } from "axios"; 阅读全文
posted @ 2024-04-06 18:47 羽鱼 阅读(141) 评论(0) 推荐(0) 编辑
摘要: //index.html/#/login win.loadFile(indexUrl, { hash: 'login' }); 阅读全文
posted @ 2024-03-12 13:50 羽鱼 阅读(132) 评论(0) 推荐(0) 编辑