Implement Replies #29

Merged
sauceyred merged 21 commits from replies into main 2025-07-11 01:39:45 +00:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 704de034b7 - Show all commits

View file

@ -75,6 +75,11 @@ onMounted(async () => {
// showHover.value = !showHover.value; // showHover.value = !showHover.value;
//} //}
const nuxtApp = useNuxtApp();
function emitId() {
// nuxtApp.callHook()
}
</script> </script>
<style scoped> <style scoped>

7
types/hooks.ts Normal file
View file

@ -0,0 +1,7 @@
import type { RuntimeNuxtHooks } from 'nuxt/schema';
declare module "nuxt/schema" {
interface RuntimeNuxtHooks {
"app:message:right-clicked": (payload: { messageId: string }) => void
}
}