vue3-prlx
v0.1.0
Published
This is a package created to practice building Vue TypeScript packages with Vite. ### this is the vue 3 version of (https://github.com/gerasimvol/vue-prlx)
Downloads
121
Readme
vue3-prlx
This is a package created to practice building Vue TypeScript packages with Vite.
this is the vue 3 version of (https://github.com/gerasimvol/vue-prlx)
Demo and settings
🛠 Install
npm i vue3-prlx
yarn add vue3-prlx
🔌 Initialization
import { createApp } from "vue";
// As a plugin
import { VuePrlx } from "vue3-prlx";
const app = createApp(App)
app.use(VuePrlx);
// Or as a directive
import { VuePrlxDirective } from 'vue-prlx'
app.directive('prlx', VuePrlxDirective);