Add some libraries to Vendor
This commit is contained in:
parent
e57e1f51ea
commit
13508b449d
|
@ -12,6 +12,11 @@ import jQuery from 'jquery';
|
||||||
import lodash from 'lodash';
|
import lodash from 'lodash';
|
||||||
import Vue from 'vue';
|
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 { jQuery as $ };
|
||||||
|
|
||||||
export default class {
|
export default class {
|
||||||
|
@ -33,4 +38,9 @@ export default class {
|
||||||
*/
|
*/
|
||||||
static get Vue() { return Vue }
|
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 }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue