We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0a1fe1 commit fe34bceCopy full SHA for fe34bce
src/App.vue
@@ -14,6 +14,7 @@
14
<CodeIcon icon="server" />v{{ appStore.clientVersion }}
15
</span>
16
17
+ <span>{{ addonStore.addons.length }} / {{ addonStore.total }}</span>
18
<span>
19
<a
20
:href="FEEDBACK_URL"
@@ -38,6 +39,9 @@ import Notifications from "./components/Notifications.vue";
38
39
import { vscode } from "./services/vscode.service";
40
import { useAppStore } from "./stores/app";
41
import { FEEDBACK_URL } from "./config";
42
+import { useAddonStore } from "./stores/addonStore";
43
+
44
+const addonStore = useAddonStore();
45
46
const appStore = useAppStore();
47
0 commit comments