摘要:
当我在虚拟机中安装好Ubuntu16.04 64位的时候,发现无法进入全屏模式,尝试了这个方法可以解决。虚拟机系统是麒麟v10 第一: 执行下面操作 xrandr -s 1920*1080 如果提示为 Size index 1920 is too large, there are only 19 s 阅读全文
摘要:
UI组件库 element https://element.eleme.cn/#/zh-CN vant https://youzan.github.io/vant/#/zh-CN/ View UI www.iviewui.com/ ant design ant.design/index-cn 没用过 阅读全文
摘要:
这是一个排序数组: [15, 24, 30, 48, 49, 64, 86, 90, 100, 121, 130] function binarySearch(arr, x) { // left index of the current interval let l = 0; // right in 阅读全文
摘要:
方法1: const electron = require('electron') const Menu = electron.Menu function createWindow (){ Menu.setApplicationMenu(null) } 方法2: new BrowserWindow( 阅读全文