| Total Complexity | 2 |
| Complexity/F | 1 |
| Lines of Code | 10 |
| Function Count | 2 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import Vue from 'vue'; |
||
| 2 | Vue.config.productionTip = false; |
||
| 3 | |||
| 4 | // register global components |
||
| 5 | import components from './components/global'; |
||
| 6 | Object.keys(components).forEach(tag => Vue.component(tag, components[tag])); |
||
| 7 | |||
| 8 | // register global filters |
||
| 9 | import filters from './filters/global'; |
||
| 10 | Object.keys(filters).forEach(tag => Vue.filter(tag, filters[tag])); |
||
| 11 |