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