上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: Remove-Item -Recurse -Force <要删除的目录> 可以简写为: rm -r -fo <要删除目录> 阅读全文
posted @ 2023-03-14 10:27 SKILL·NULL 阅读(1381) 评论(0) 推荐(0)
摘要: brew install hudochenkov/sshpass/sshpass sshpass -p password ssh -p port user@xxxx.xxxx.xxxx.xxxx 阅读全文
posted @ 2023-02-28 11:01 SKILL·NULL 阅读(42) 评论(0) 推荐(0)
摘要: # 定义sedi数组 # Linux sed后面, 用 "-i" sedi=(-i) case "$(uname)" in Darwin*) # Mac sed后面, -i 后面多个空字符串 "" sedi=(-i "") esac 例:删除 device.js 包含 “export default 阅读全文
posted @ 2022-08-12 11:51 SKILL·NULL 阅读(145) 评论(0) 推荐(0)
摘要: 之所以100vh在移动端出现问题,原因大致如上图,真搞不懂,为什么总是有反人类的设计出现。 经过多方参考,实测有效的方案如下: <style> :root { --vh: 1vh; } </style> <script> !(function (n, e) { function setViewHei 阅读全文
posted @ 2022-04-28 19:20 SKILL·NULL 阅读(1191) 评论(0) 推荐(0)
摘要: You are currently using minified code outside of NODE_ENV 'production'. This means that you are running a slower development build of Redux. You can u 阅读全文
posted @ 2022-04-28 18:02 SKILL·NULL 阅读(1827) 评论(0) 推荐(0)
摘要: Uncaught SyntaxError: The requested module '/node_modules/.vite/vue-router.js?v=2f0f3daf' does not provide an export named 'VueRouter' 将: import { Vue 阅读全文
posted @ 2022-01-05 20:31 SKILL·NULL 阅读(5302) 评论(0) 推荐(1)
摘要: 更多配置参考:https://vitejs.dev vite.config.ts import vue from '@vitejs/plugin-vue' import vueJsx from '@vitejs/plugin-vue-jsx' import { defineConfig } from 阅读全文
posted @ 2020-09-24 17:05 SKILL·NULL 阅读(19433) 评论(0) 推荐(1)
摘要: 核心是使用v-if控制列的显隐 <template> <div> <div v-for="(item, index) in tables" :key="index"> <el-table :data="item.data" @filter-change="value => filterChange( 阅读全文
posted @ 2020-09-11 16:06 SKILL·NULL 阅读(1690) 评论(0) 推荐(0)
摘要: 在superset => templates => appbuilder 文件夹下找到 navbar.html 如果没有可对应新建,navbar.html内容如下 {% set menu = appbuilder.menu %} {% set languages = appbuilder.langu 阅读全文
posted @ 2020-06-04 20:57 SKILL·NULL 阅读(384) 评论(0) 推荐(0)
摘要: 访问者模式(Visitor Pattern) 定义:使用一个访问者类,改变元素类的执行算法。通过这种方式,元素的执行算法可以随着访问者改变而改变。目的:将数据结构与数据操作分离。场景:您在朋友家做客,您是访问者,朋友接受您的访问,您通过朋友的描述,然后对朋友的描述做出一个判断,这就是访问者模式。 / 阅读全文
posted @ 2020-04-29 16:56 SKILL·NULL 阅读(244) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 16 下一页