Fix the ability to mark communications signal/noise
This commit is contained in:
parent
978c20d72a
commit
22c2df11f8
2 changed files with 8 additions and 9 deletions
|
|
@ -1,10 +1,11 @@
|
|||
import { defineStore } from "pinia";
|
||||
import { ref, computed } from "vue";
|
||||
import { useUserStore } from "./user";
|
||||
import { Communication } from "../types";
|
||||
|
||||
export const useCommunicationStore = defineStore("communication", () => {
|
||||
// State
|
||||
const all = ref(null);
|
||||
const all = ref<Communication[] | null>(null);
|
||||
const loading = ref(false);
|
||||
const error = ref(null);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue