# Other Integrations
# Vuejs
UploaderWindow provides a mixin for VueJs making it very easy to use with Vue 2.x projects.
Installation
npm install @webutils/vue2-uploader
Using it in your projects
import Vue from 'vue';
import UploaderWindow from '@webutils/vue2-uploader';
Vue.use(UploaderWindow, {apiKey: 'your-api-key'}); //make sure to change the API key!
Then inside your Vue app
methods: {
click() {
this.$uploader.open().then(urls => console.log(urls));
},
//....
}