Arranging shortcut keys in electron+vue (windows)

Foreword:

        When electron+vue is used to develop a project, we may often take over the project without its tool part. One needs to be opened in the configuration file. In fact, it can be opened through the shortcut key To achieve rapid development of the project.

1. The code opens his debugging tool

win = new BrowserWindow...
win.webContents.openDevTools() //打开调试框

2. Shortcut keys:

open debug box  ctrl+shift+i
Refresh interface   ctrl+r
Strong brush interface  ctrl+shift+r
minimized interface  ctrl+m
full screen     f11
The interface font becomes larger ctrl+shift+ (  +  )
The interface font becomes smaller   ctrl+ (  -  )
The interface font is restored to the default  ctrl+0

Shortcut keys entered in this article

copy ctrl+c
paste ctrl+v
revoke  ctrl+z
select all  ctrl+a

 

Guess you like

Origin blog.csdn.net/qq_41619796/article/details/131696249