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

???.mounted   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
import Vue from 'vue';
2
import WidgetChart from '../vue/WidgetChart.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: "#widget-content",
7
    components: {
8
        'widget-chart': WidgetChart,
9
    },
10
    data: {
11
    },
12
    methods: {
13
    },
14
    mounted() {
15
    },
16
});
17