上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: 预览图 实现的效果 1、选中最后一级,下拉框收缩 2、下拉框的每一行点击都可以选中 3、点击radio,也能实现选中最后一级,下拉框收缩 组件代码 <el-cascader ref="cascaderHandleRef" v-model="languageIds" class="width-260" 阅读全文
posted @ 2023-04-24 16:16 DL·Coder 阅读(1380) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"><head> <meta charset="UTF-8"> <title>加载动画</title></head> <style> .dotting { margin: 20% auto; width: 150px; } .dotting 阅读全文
posted @ 2023-04-11 11:21 DL·Coder 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 首先确认已安装Git,可以通过 git –version 命令可以查看当前安装的版本。 为同一个电脑,配置多个 git 账号,其整体流程如下: 清空默认的全局 user.name 和 user.email 为不同的 git 账户生成不同的 ssh-key 将以上的 ssh-key 分别添加到 ssh 阅读全文
posted @ 2023-04-10 10:49 DL·Coder 阅读(5898) 评论(0) 推荐(0) 编辑
摘要: 传送门:https://blog.csdn.net/weixin_40973138/article/details/106081946 IP地址查看传送门:https://site.ip138.com/raw.githubusercontent.com/ 阅读全文
posted @ 2023-03-29 16:17 DL·Coder 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 一、js 判断 根据浏览器ua判断当前是否为移动设备: middleware中间件执行流程顺序: 1、nuxt.config.js 2、匹配布局 3、匹配页面 项目根目录下新建 middleware 文件夹,新建 midd.js 文件 export default function ({ isSer 阅读全文
posted @ 2023-03-20 10:25 DL·Coder 阅读(1256) 评论(0) 推荐(0) 编辑
摘要: 一、 使用 middleware 判断(推荐) 根据浏览器ua判断当前是否为移动设备: middleware中间件执行流程顺序: 1、nuxt.config.js 2、匹配布局 3、匹配页面 项目根目录下新建 middleware 文件夹,新建 midd.js 文件 export default f 阅读全文
posted @ 2023-03-17 16:57 DL·Coder 阅读(896) 评论(0) 推荐(0) 编辑
摘要: 传送门:https://juejin.cn/post/6956456779761303560 传送门:https://www.jianshu.com/p/fba791ce8c4c 阅读全文
posted @ 2023-02-20 14:00 DL·Coder 阅读(16) 评论(0) 推荐(0) 编辑
摘要: <span type="par">【背景切换】</span> span[type] { font-size: 13px; } span[type='par'] { color: #e05c69; background-color: #e1f1fa; .modify; } span[type='wor 阅读全文
posted @ 2023-02-10 13:25 DL·Coder 阅读(61) 评论(0) 推荐(0) 编辑
摘要: // 替换 html 特殊字符 export function replaceHtmlSymbol(html) { if (html == null) { return '' } return html.replace(/</gm, '&lt;') .replace(/>/gm, '&gt;') . 阅读全文
posted @ 2023-02-07 15:33 DL·Coder 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 初始化 Map,在创建的同时初始化实例,可以给 Map 构造函数传入一个可迭代对象,需要包含键/值对数组。 // 使用嵌套数组初始化映射 const m1 = new Map([ ["key1", "val1"], ["key2", "val2"], ["key3", "val3"] ]); ale 阅读全文
posted @ 2023-02-07 09:22 DL·Coder 阅读(40) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
点击右上角即可分享
微信分享提示