feat: add dock position setting

* refactor(storage.ts): move `language` and `isShowTopbar` to `setting` variable
* refactor: rename `BewSelect.vue` to `Select.vue`
This commit is contained in:
Hakadao
2023-03-23 02:13:04 +08:00
parent d5daa2a74d
commit 8a86ffaf43
8 changed files with 104 additions and 38 deletions

5
src/models/models.ts Normal file
View File

@@ -0,0 +1,5 @@
export interface Settings {
language: string
isShowTopbar: boolean
dockPosition: 'left' | 'right' | 'bottom'
}