VinceG / vue-click-away

Vue 3.0 Compatible Click Away Directive
MIT License
108 stars 14 forks source link

How to use in nuxt 3 app #24

Open ShekhSaifuddin007 opened 1 year ago

hassanrazahasrat commented 1 year ago

create a file click-away.client.ts in plugins folder with this content.

import ClickAway from 'vue3-click-away';

export default defineNuxtPlugin(({ vueApp }) => {
  vueApp.use(ClickAway);
});

Now you can use v-click-away directive in your vue files.

dhaladitya108 commented 9 months ago

@hassanrazahasrat thanks man