vue3国际化
摘要:1.安装引入 npm install vue-i18n2.在src下新建i18n文件夹,包含index.js,en.js,zh.js(只做中英文切换) // zh.js export default { notebook: { search: '搜索', top:'置顶', } } // en.js
阅读全文
posted @
2022-10-24 16:59
1183788267
阅读(174)
推荐(0) 编辑
pdfobject 预览pdf插件
摘要:https://pdfobject.com/
阅读全文
posted @
2022-10-14 16:37
1183788267
阅读(28)
推荐(0) 编辑
fixed定位不是基于body定位的
摘要:当fixed元素的祖先元素的transform不为none的时候,fixed元素基于该元素定位
阅读全文
posted @
2022-10-14 11:32
1183788267
阅读(76)
推荐(0) 编辑
判断设备系统和浏览器
摘要:var isMac = /macintosh|mac os x/i.test(navigator.userAgent);var isWindows = /windows|win32/i.test(navigator.userAgent);var isAndriod = /andriod/i.test
阅读全文
posted @
2022-10-13 14:34
1183788267
阅读(17)
推荐(0) 编辑