Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 16 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | |||
8 | require('./bootstrap'); |
||
9 | require('./components'); |
||
10 | |||
11 | /** |
||
12 | * Next, we will create a fresh Vue application instance and attach it to |
||
13 | * the page. Then, you may begin adding components to this application |
||
14 | * or customize the JavaScript scaffolding to fit your unique needs. |
||
15 | */ |
||
16 | |||
17 | /** global: Vue */ |
||
18 | |||
19 | Vue.component('example', require('./components/Example.vue')); |
||
20 | |||
21 | const app = new Vue({ |
||
|
|||
22 | el: '#app' |
||
23 | }); |
||
24 |