skip to Main Content

Javascript – Why watch is not execute when history is change

<script setup> import InputChat from '../components/InputChat.vue' import Chat from '../components/Chat.vue' import Layout from "@/components/Layout.vue"; import Sidebar from "@/components/Sidebar.vue"; import ChatVue from '@/components/Chat.vue'; import { ChatManager } from '../../lib/ChatManager'; import { ref, watch } from 'vue'; const manager = new ChatManager()…

VIEW QUESTION
Back To Top
Search