Issues (66)

src/vue/seo-manager.app.js (1 issue)

1
import Vue from 'vue'
2
import VueResource from 'vue-resource'
3
import App from './App'
4
import MultiSelect from 'vue-multiselect'
5
import VueDraggable from 'vue-draggable'
6
import ClickOutside from 'vue-click-outside'
7
import VueSweetalert2 from 'vue-sweetalert2'
8
import {store} from './store/store'
9
Vue.use(VueDraggable);
10
Vue.use(VueResource);
11
Vue.use(VueSweetalert2);
12
13
const API_URL = window.API_URL;
14
const CSRF_TOKEN = window.CSRF_TOKEN;
15
16
Vue.filter('uppercase', function (value) {
17
    return value.toUpperCase()
18
});
19
Vue.directive('click-outside', ClickOutside);
20
Vue.component('multi-select', MultiSelect);
21
22
new Vue({
0 ignored issues
show
Unused Code Best Practice introduced by
The object created with new Vue({IdentifierNode(...,None,false,false))))}) is not used but discarded. Consider invoking another function instead of a constructor if you are doing this purely for side effects.
Loading history...
23
    el: '#lionix-seo-manager-app',
24
    store,
25
    components: {
26
        App
27
    }
28
});
29