How to Register Custom Vue Directives in Nuxt 3
TL;DR
Create a plugin file in your plugins/ directory, which is where we'll have access to our Vue app instance.
We can define and register our custom directive there:
// ~/plugins/my-directives.ts
export default defineNuxtPlugin((nuxtApp) => {
n...
blog.minch.dev2 min read