/imgs/avatar.webp

Codee的博客

YOLOV8环境配置

参考视频: https://www.bilibili.com/video/BV1vH4y1a72o/?vd_source=cdd8cee3d9edbcdd99486a833d261c72 1 pip直接安装 1 pip install ultralytics 2 通过源码安装 下载指定发行版本 https://github.com/ultralytics/ultralytics/releases/tag/v8.3.23 解压后,进入目录,执行 pip install -e .

Vuejs使用vite生成flask引用静态资源的模板

1 问题描述vuejs使用vite执行npm run build的时候,生成falsk支持的格式,例如 1 2 3 4 5 6 <!-- <script type="module" crossorigin src="/assets/index-C0LpkD3K.js"></script>--> <script type="module" src="{{ url_for('static', filename='assets/index-C0LpkD3K.js') }}"></script> <!-- <link rel="stylesheet" crossorigin href="/assets/index-Dub40aXx.css">--> <link rel="stylesheet"

Vuejs使用ace-editor自动补全

0.1 导入ace 1 2 import ace from 'ace-builds' ace.config.set('basePath', '/node_modules/ace-builds/src-min-noconflict'); 0.2 导入语言工具,两种写法 1 2 3 4 5 6 // 写法1 import extTool from 'ace-builds/src-noconflict/ext-language_tools'; ace.config.setModuleUrl('ace/ext/language_tools', extTool); // 写法2 import extTool from 'ace-builds/src-noconflict/ext-language_tools'; 注意:ace.config.set('b

Vuejs-KeepAlive失效问题

1 多余的空格导致失效 正常: 1 2 3 4 5 <router-view v-slot="{ Component }"> <keep-alive include="ConfigEditorPage,ScriptManagerPage"> <component :is="Component" /> </keep-alive> </router-view> 仅第一个生效 1 2 3 4 5 <router-view v-slot="{ Component }"> <keep-alive include="ConfigEditorPage, ScriptManagerPage"> <component :is="Component" /> </keep-alive> </router-view> 1.1 不正确的写法导致失效奇怪的是,官方