aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNick Coutsos <[email protected]>2021-11-07 11:31:07 -0500
committerNick Coutsos <[email protected]>2021-11-07 11:31:07 -0500
commita6aeb000619896dc57b66cd6fc8c8b24439066c3 (patch)
treebb8222b0008d65dd676e22f77d1f7144f05f9395
parent20350e10c3813e198db946badbea3e9abdae7e65 (diff)
downloadkeymap-editor-a6aeb000619896dc57b66cd6fc8c8b24439066c3.tar.gz
keymap-editor-a6aeb000619896dc57b66cd6fc8c8b24439066c3.zip
Remove unused variables
-rw-r--r--application/components/initialize.vue14
1 files changed, 2 insertions, 12 deletions
diff --git a/application/components/initialize.vue b/application/components/initialize.vue
index 7795fcd..c0146a4 100644
--- a/application/components/initialize.vue
+++ b/application/components/initialize.vue
@@ -16,14 +16,7 @@ export default {
keycodes: [],
behaviours: [],
indexedKeycodes: {},
- indexedBehaviours: {},
- repositories: [],
- selectedRepository: null,
- keymap: {},
- layers: [],
- layout: [],
- tooManyRepos: false,
- loadKeyboardError: null
+ indexedBehaviours: {}
}
},
provide() {
@@ -57,9 +50,6 @@ export default {
<template>
<loader :load="doReadyCheck">
- <slot
- :tooManyRepos="tooManyRepos"
- :loadKeyboardError="loadKeyboardError"
- />
+ <slot />
</loader>
</template>