Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

vue3-prlx

A-Behairi17MIT0.1.0TypeScript support: included

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)

vite-plugin-vue

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);

⚙️ Demo and settings