File tree Expand file tree Collapse file tree 4 files changed +163
-161
lines changed Expand file tree Collapse file tree 4 files changed +163
-161
lines changed Original file line number Diff line number Diff line change 3333 <hsc-menu-separator />
3434 <hsc-menu-item :label =" selected.join(',')" :disabled =" true" />
3535 </hsc-menu-bar-item >
36+ <hsc-menu-bar-item label =" Keybind" >
37+ <hsc-menu-item label =" Ctrl+X" keybind =" ctrl+x" @click =" window.alert('ctrl+x')" />
38+ <hsc-menu-item label =" Alt+X" keybind =" alt+x" @click =" window.alert('alt+x')" />
39+ <hsc-menu-item label =" Shift+Alt+X" keybind =" shift+alt+x" @click =" window.alert('shift+alt+x')" />
40+ <hsc-menu-item label =" F2" keybind =" F2" @click =" window.alert('F2')" />
41+ </hsc-menu-bar-item >
3642 <hsc-menu-bar-item label =" Window.open" >
3743 <hsc-menu-item label =" vue-menu" @click =" window.open('https://github.com/michitaro/vue-menu')" :sync =" true" />
3844 <hsc-menu-item label =" vue-window" @click =" window.open('https://github.com/michitaro/vue-window')" :sync =" true" />
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ class Entry {
55
66
77const root = new Entry ( '#root' )
8- const fileList = require ( 'raw-loader!./filelist.txt' ) as string
8+ const fileList = require ( 'raw-loader!./filelist.txt' ) . default as string
99const paths = fileList . split ( '\n' ) . filter ( path => path . length > 0 )
1010
1111
You can’t perform that action at this time.
0 commit comments