上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array/flat#reduce_concat_isarray_recursivity let ary = [1, [2, [3, [4 阅读全文
posted @ 2022-03-22 19:07 7c89 阅读(273) 评论(0) 推荐(0) 编辑
摘要: // 父组件 <Dialog :show="show" @close="show = false" /> // 子组件 <template> <div> <el-dialog title="提示" :visible.sync="show" width="30%" :before-close="han 阅读全文
posted @ 2022-03-22 11:11 7c89 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: 前置条件电脑安装node环境 执行 npm i nodemon -g 1.新建一个bat 文件 @echo off rem 获取bat本身文件名 echo %0 rem 获取外部第一个参数 @REM echo %1 nodemon %1 @REM Pause 2.修改注册表 cmd →regedit 阅读全文
posted @ 2022-03-21 16:22 7c89 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 一、调用FileReader对象的方法 方法名 参数 描述 abort none 中断读取 readAsBinaryString file 将文件读取为二进制码 readAsDataURL file 将文件读取为 DataURL readAsText file, [encoding] 将文件读取为文 阅读全文
posted @ 2022-03-20 14:40 7c89 阅读(278) 评论(0) 推荐(0) 编辑
摘要: function func() { document.body.innerText=new Date() } func() function newInterval(func, delay) { function inner() { func() setTimeout(inner, delay) } 阅读全文
posted @ 2022-03-19 10:37 7c89 阅读(19) 评论(0) 推荐(0) 编辑
摘要: <style> html,body{ margin: 0; height: 100%; display: grid; place-content: center; } body{ } [type="range"] { -webkit-appearance: none; appearance: non 阅读全文
posted @ 2022-03-16 17:32 7c89 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1. grid <style> .parent { display: grid; place-items: center; /* 等同align-items: center;justify-items: center;*/ width: 300px; height: 300px; border: 1 阅读全文
posted @ 2022-03-13 16:19 7c89 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1.项目中使用eslint 或者全局安装eslint 打开终端,运行npm install eslint -g全局安装ESLint。 2.vscode安装eslint 插件 3.vscode 扩展设置 点击 文件 > 首选项 > 设置 setting.json vscode 自带保存格式化 "edi 阅读全文
posted @ 2022-03-12 14:02 7c89 阅读(3581) 评论(0) 推荐(1) 编辑
摘要: 1.CSS媒体查询,根据系统自动切换不同样式 //还可以配合css变量 <style> @media (prefers-color-scheme: dark) { body { color: #eee; background: #121212; } body a { color: #809fff; 阅读全文
posted @ 2022-03-09 17:26 7c89 阅读(53) 评论(0) 推荐(0) 编辑
摘要: https://www.dowebok.com/134.html https://www.dowebok.com/131.html 阅读全文
posted @ 2022-03-09 15:10 7c89 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页