A Vue3 wrapper for noUiSlider
npm install --save vue3-nouislider
Install all the components:
import VueNouislider from 'vue3-nouislider';
import {createApp} from 'vue';
import App from './App.vue';
const app = createApp(App).use(VueNouislider);
The first time you create or clone your plugin, you need to install the default dependencies:
npm install
This will run webpack in watching mode and output the compiled files in the dist
folder.
npm run dev
While developping, you can follow the install instructions of your plugin and link it into the project that uses it.
In the plugin folder:
npm link
In the other project folder:
npm link vue3-nouislider
This will install it in the dependencies as a symlink, so that it gets any modifications made to the plugin.
You may have to login to npm before, with npm adduser
. The plugin will be built in production mode before getting published on npm.
npm publish
This will build the plugin into the dist
folder in production mode.
npm run build