Add some libraries to Vendor

This commit is contained in:
Samuel Elliott 2018-05-29 16:49:37 +01:00
parent e57e1f51ea
commit 13508b449d
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
1 changed files with 10 additions and 0 deletions

View File

@ -12,6 +12,11 @@ import jQuery from 'jquery';
import lodash from 'lodash';
import Vue from 'vue';
import Combokeys from 'combokeys';
import filetype from 'file-type';
import filewatcher from 'filewatcher';
import VTooltip from 'v-tooltip';
export { jQuery as $ };
export default class {
@ -33,4 +38,9 @@ export default class {
*/
static get Vue() { return Vue }
static get Combokeys() { return Combokeys }
static get filetype() { return filetype }
static get filewatcher() { return filewatcher }
static get VTooltip() { return VTooltip }
}