朱丽叶

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

2023年5月15日 #

vscode 中使用TabNine

摘要: 插件市场直接安装 Tabnine 无限免费使用方法: 删除:C:\Users\Administrator\AppData\Roaming\Codota\TabNine\com.tabnine.data\install_time C:\Users\Administrator\AppData\Roami 阅读全文

posted @ 2023-05-15 22:06 朱丽叶 阅读(1526) 评论(0) 推荐(0) 编辑

2023年5月11日 #

uniapp app上架应用商店问题?

摘要: 小米应用商店 oaid 问题 参考: https://ask.dcloud.net.cn/question/154958 vivo 应用商店 定向推送功能未提供关闭渠道--不通过; 参考: https://ask.dcloud.net.cn/question/145575 注销账户 您可以通过“我的 阅读全文

posted @ 2023-05-11 09:44 朱丽叶 阅读(184) 评论(0) 推荐(0) 编辑

2023年5月8日 #

uniapp app端拨打电话权限

摘要: <view class="collect_item image1" @click="callPhone"><text>致电</text></view> // app端 需要导入 工具方法进行判断是否授权 插件地址 https://ext.dcloud.net.cn/plugin?id=594 imp 阅读全文

posted @ 2023-05-08 11:42 朱丽叶 阅读(1463) 评论(0) 推荐(0) 编辑

2023年2月15日 #

原生的js分页

摘要: function pagePagings(option) { let htmlStr = ''; console.log(option.current,option.total,option.btnNums ); // 当前页 let current = option.current || 1; / 阅读全文

posted @ 2023-02-15 14:34 朱丽叶 阅读(87) 评论(0) 推荐(0) 编辑

2023年2月8日 #

cdn方式引入react

摘要: <script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js"></script> <script crossorigin src="https://unpkg.com/react-dom@18/umd 阅读全文

posted @ 2023-02-08 23:26 朱丽叶 阅读(181) 评论(0) 推荐(0) 编辑

2023年2月1日 #

vue3 + xlsx + xlsx-style 导出excel

摘要: 安装 file-saver、xlsx、xlsx-style // 注意安装的版本 "file-saver": "^2.0.5", "xlsx": "^0.17.0", "xlsx-style": "^0.8.13" npm i xlsx@0.17.0 -S npm i xlsx-style@0.8. 阅读全文

posted @ 2023-02-01 16:50 朱丽叶 阅读(1660) 评论(0) 推荐(0) 编辑

2023年1月10日 #

uni-app 使用uni-simple-router进行路由守卫

摘要: // 1. 安装依赖 // uni-read-pages 适用于读取page.json 文件中的路由信息 npm i uni-simple-router@2.0.7 uni-read-pages // 2. 配置与初始化 // 2.1 根目录新建 vue.config.js 文件 const Tra 阅读全文

posted @ 2023-01-10 15:48 朱丽叶 阅读(2245) 评论(0) 推荐(0) 编辑

2023年1月3日 #

替换富文本中 img标签的src地址

摘要: imgSrcReplace(htmlstr) { let regex3 = new RegExp(/<img [^>]*src=['"]([^'"]+)[^>]*>/gi); let htmlstr1 = htmlstr.replace(regex3, function(match, capture 阅读全文

posted @ 2023-01-03 17:47 朱丽叶 阅读(699) 评论(0) 推荐(1) 编辑

2022年12月21日 #

vue中webpack环境中动态注册插件

摘要: // webpack 动态引入文件 const requireComonents = require.context("./", true, /\.vue$/); // Vue提供的install 方法进行插件的注册 /** install方法第一个参数是vue的构造器,第二个参数是可选的选项对象 阅读全文

posted @ 2022-12-21 23:35 朱丽叶 阅读(106) 评论(0) 推荐(0) 编辑

2022年12月16日 #

vue 实现虚拟列表

摘要: // 调用组件 <List :arr="dataList"> <template #default="{item}"> {{item * 3}} </template> </List> // 虚拟列表组件 <template> <div class=''> <!-- 给用户看到的20个元素的容器 - 阅读全文

posted @ 2022-12-16 23:42 朱丽叶 阅读(345) 评论(1) 推荐(1) 编辑

点击右上角即可分享
微信分享提示