@marlonwiss/vue-directives
v1.0.13
Published
A lightweight Vue 3 plugin providing a collection of custom directives to enhance your development experience.
Maintainers
Readme
@marlonwiss/vue-directives
A lightweight Vue 3 plugin providing a collection of custom directives to enhance your development experience.
Designed to work seamlessly in standard Vue 3 applications.
Installation
Install the package using your favorite package manager:
Using pnpm
pnpm add @marlonwiss/vue-directivesUsing yarn
yarn add @marlonwiss/vue-directivesUsing npm
npm install @marlonwiss/vue-directivesSetup
Import and install the plugin in your Vue app:
// main.ts
import { createApp } from 'vue'
import App from './App.vue'
import { marlonWissVueDirectivesPlugin } from '@marlonwiss/vue-directives'
const app = createApp(App)
app.use(marlonWissVueDirectivesPlugin)
app.mount('#app')Note: Only use this method for Vue projects. For Nuxt 3, use
@marlonwiss/nuxt-directivesinstead.
📚 Usage / Directives Documentation
See the full list of available directives here.
📚 Changelog
See the full changelog here.
📚 Monorepo Documentation
See the documentation of the monorepo here.
