| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 16 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import Vue from 'vue'; |
||
| 2 | import ImportDraggable from '../vue/ImportDraggable.vue'; |
||
| 3 | |||
| 4 | // Create our vue instance |
||
| 5 | const vm = new Vue({ |
||
|
|
|||
| 6 | el: "#cp-nav-content", |
||
| 7 | components: { |
||
| 8 | 'import-draggable': ImportDraggable, |
||
| 9 | }, |
||
| 10 | data: { |
||
| 11 | }, |
||
| 12 | methods: { |
||
| 13 | }, |
||
| 14 | mounted() { |
||
| 15 | }, |
||
| 16 | }); |
||
| 17 |