Passed
Push — v1 ( 4ff485...58f920 )
by Andrew
11:45 queued 05:27
created

src/assetbundles/transcoder/src/js/Welcome.js (1 issue)

1
import Vue from 'vue';
2
import Confetti from '../vue/Confetti.vue';
3
4
// Create our vue instance
5
const vm = new Vue({
0 ignored issues
show
The constant vm seems to be never used. Consider removing it.
Loading history...
6
    el: "#cp-nav-content",
7
    delimiters: ["${", "}"],
8
    components: {
9
        'confetti': Confetti,
10
    },
11
    data: {
12
    },
13
    methods: {
14
    },
15
    mounted() {
16
    },
17
});
18
19
// Accept HMR as per: https://webpack.js.org/api/hot-module-replacement#accept
20
if (module.hot) {
21
    module.hot.accept();
22
}
23