Passed
Push — develop ( 35967f...ff770f )
by Andrew
04:34
created

src/assetbundles/retour/src/js/Import.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 16
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 10
dl 0
loc 16
rs 10
c 0
b 0
f 0
cc 0
nc 1
mnd 0
bc 1
fnc 1
bpm 1
cpm 1
noi 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A ???.mounted 0 2 1
1
import Vue from 'vue';
2
import ImportDraggable from '../vue/ImportDraggable.vue';
3
4
// Create our vue instance
5
const vm = new Vue({
0 ignored issues
show
Unused Code introduced by
The constant vm seems to be never used. Consider removing it.
Loading history...
6
    el: "#cp-nav-content",
7
    components: {
8
        'import-draggable': ImportDraggable,
9
    },
10
    data: {
11
    },
12
    methods: {
13
    },
14
    mounted() {
15
    },
16
});
17