🚧 WIP: shortcut setting page

This commit is contained in:
PiEgg
2019-09-11 15:31:27 +08:00
parent f491209bd6
commit 1274893154
8 changed files with 203 additions and 32 deletions

View File

@@ -0,0 +1,31 @@
<template>
<el-dialog
title="设置快捷键"
:visible.sync="visible"
:modal-append-to-body="false"
>
</el-dialog>
</template>
<script>
// import keyDetect from 'utils/key-binding'
export default {
name: '',
props: {
visible: {
type: Boolean,
default: false
}
},
created () {
this.$db.read().get('settings.shortKey')
},
data () {
return {
list: []
}
}
}
</script>
<style lang='stylus'>
</style>