2021年12月23日

Vue路由没有看懂的部分暂时记一下

摘要: 示例 route/index.js 路由页面 export default new Router({ mode: 'history', // 去掉url中的# scrollBehavior: () => ({ y: 0 }), routes: [{ path: '/redirect', compon 阅读全文

posted @ 2021-12-23 17:56 hi-gdl 阅读(515) 评论(0) 推荐(0) 编辑

ffmpeg转换及压缩视频.bat

摘要: 这是的两个例子都是windows批处理命令 ,将命令复制生成bat文件 , 放在视频所在文件夹运行 , 生成文件在 out 文件夹中 1. 将mov格式视频转为mp4格式 @CD /D "%~dp0" @echo off&title ffmpeg视频压缩转换 md "out" for %%a in 阅读全文

posted @ 2021-12-23 16:36 hi-gdl 阅读(759) 评论(0) 推荐(0) 编辑

Vue笔记4.1 : 路由 scrollBehavior 属性

摘要: //代码片段 export default new Router({ mode: 'history', // 去掉url中的# scrollBehavior: () => ({ y: 0 }), routes: constantRoutes }) 好处当切换到新路由时,想要页面滚到顶部,或者是保持原 阅读全文

posted @ 2021-12-23 09:31 hi-gdl 阅读(837) 评论(0) 推荐(0) 编辑

导航