12 2022 档案
摘要:1. 查看当做操作目录位置 > pwd2. 查看(当前)目录里边的文件内容 > ls //list > ls -l 或ll //显示文件的详细信息 > ls -al //all显示文件的详细信息(包括隐藏文件) > ls -a //显示目录全部文件名字(包括隐藏文件) > ls [-al] 目录 /
阅读全文
摘要:$dispatch 只会通知自己的父亲,父亲的父亲,父亲的父亲 eventBus 所有的父组件和子组件 main.js 全局注册 // 向上通知 Vue.prototype.$dispatch = function (eventName,value) { let parent = this.$par
阅读全文
摘要:let fn = () => { console.log('执行SI'); } function setTimeToInterval(fn, delay, times) { if (!times) { return } setTimeout(() => { fn() setTimeToInterva
阅读全文
摘要:https://liulanmi.com/labs/core.html
阅读全文
摘要:利用Set const res1 = Array.from(new Set(arr)); 两层for循环+splice const unique1 = arr => { let len = arr.length; for (let i = 0; i < len; i++) { for (let j
阅读全文
摘要:打开系统设置主界面 adb shell am start com.android.settings/com.android.settings.Settings 查看设备 adb devices 返回设置 adb shell am start -n com.android.settings/.Sett
阅读全文
摘要:<template> <div class="list" id="list"> <div class="cc rowup"> </div> </div> </template> <script> export default { components: {}, data () { return {
阅读全文

浙公网安备 33010602011771号