ระบบจัดการประเภทของปัญหา
This commit is contained in:
parent
c6b9236a04
commit
b4c4325cd1
11 changed files with 813 additions and 77 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
import FormChat from "@/modules/00_support/components/FormChat.vue";
|
||||
import { useSupportStore } from "@/modules/00_support/store/Main.ts";
|
||||
import { useSupportStore } from "@/modules/00_support/store/Main";
|
||||
import { onMounted, onUnmounted, ref } from "vue";
|
||||
const store = useSupportStore();
|
||||
|
||||
|
|
|
|||
21
src/modules/00_support/views/ManageCategory.vue
Normal file
21
src/modules/00_support/views/ManageCategory.vue
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<script setup lang="ts">
|
||||
import { useSupportStore } from "@/modules/00_support/store/Main";
|
||||
import TableCategory from "@/modules/00_support/components/category/TableCategory.vue";
|
||||
import { onMounted, onUnmounted, ref } from "vue";
|
||||
|
||||
const store = useSupportStore();
|
||||
|
||||
onMounted(async () => {
|
||||
store.socket.connect();
|
||||
});
|
||||
|
||||
onUnmounted(async () => {
|
||||
store.socket.disconnect();
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<table-category />
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue