上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 版本是vue3+element-plus :span="5" style里面写 .el-col-5{ width: 20%; max-width: 20%; flex: 0 0 20%; } 阅读全文
posted @ 2023-07-25 21:45 alpiny 阅读(925) 评论(0) 推荐(0) 编辑
摘要: npm install -g npm-check npm-check -u 阅读全文
posted @ 2023-07-13 02:34 alpiny 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 打开vscode 设置 搜索 “远程” 找到,Remote: Local Port Host 改成 “allInterfaces” 这样容器中自动端口转发出来之后,本地就是0.0.0.0监听了,这样局域网其他主机也可以访问了。 阅读全文
posted @ 2023-06-08 21:21 alpiny 阅读(918) 评论(0) 推荐(0) 编辑
摘要: from projects import common common.post(....) 不罗嗦,直接上代码。 阅读全文
posted @ 2023-03-18 22:30 alpiny 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 找到文件打开: /www/server/panel/class/database.py 搜索: if len(data_name) > 16: 然后把16改大一些,重启面板,就可以了。 官方设定名称最大16位,是为了兼容老版本的数据库。 如果你使用的版本允许超过16位名称就可以了,否则最好不要改。 阅读全文
posted @ 2023-03-16 03:17 alpiny 阅读(660) 评论(0) 推荐(0) 编辑
摘要: 不知道为啥,官方文档里竟然没写... 直接上代码 template里 <a-form-item field="repeatPassword" :rules="[{ validator: validateRepeatPassword, trigger: 'change' }]"> script里 fu 阅读全文
posted @ 2022-12-03 21:42 alpiny 阅读(886) 评论(0) 推荐(0) 编辑
摘要: const name = 'c1' const currentComponent = shallowRef() const components = import.meta.glob("./a/*.vue"); currentComponent.value = defineAsyncComponen 阅读全文
posted @ 2022-10-18 05:30 alpiny 阅读(1977) 评论(0) 推荐(0) 编辑
摘要: 找了很多发现都无法访问。。。 https://cdnjs.cloudflare.com/ajax/libs/firebug-lite/1.4.0/firebug-lite.js 来自:https://cdnjs.com/libraries/firebug-lite 阅读全文
posted @ 2022-09-19 01:51 alpiny 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 之前用没问题,也许是新版的问题。 vite.config.js import tailwindcss from 'tailwindcss' ...... css: { postcss: { plugins: [tailwindcss], }, }, ..... 阅读全文
posted @ 2022-09-13 15:51 alpiny 阅读(772) 评论(0) 推荐(0) 编辑
摘要: 原因是move命令是cmd里带的。没有单独的exe文件在PATH文件夹里。 这样写: cmds: - cmd /c move "./aaa/bbb/1.txt" "./ccc/ddd/2.txt" 其他的比如copy等命令同理。。。 阅读全文
posted @ 2022-09-12 21:33 alpiny 阅读(144) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页