analysis sidebar is importing activeCategory properly

This commit is contained in:
Annika
2022-07-14 09:46:19 -06:00
parent daaf5173a6
commit c6a36f54a9
2 changed files with 11 additions and 3 deletions
+8 -2
View File
@@ -1,15 +1,21 @@
<template>
<div class="component">
Analysis Container
<p>{{category.name}}</p>
</div>
</template>
<script>
import { computed, reactive, onMounted, ref, watchEffect } from "vue";
import { AppState } from '../AppState'
export default {
setup(){
return {}
return {
category: computed(() => AppState.activeCategory)
}
}
}
</script>