1 | import Tool from './components/Tool'; |
||
2 | |||
3 | Nova.booting((Vue, router) => { |
||
0 ignored issues
–
show
|
|||
4 | Vue.component('grouped-resource-collapsable', Tool); |
||
5 | }); |
||
6 |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.