I have this error in a project vue js , I know it is eslint I checked the tutorial on the site on how to remove the error with / strong>, but it did not work, if anyone knows, I appreciate if I can help.
Error:
link Missing space before value for key 'component' src \ router \ index.js: 9: 29 {path: '/', component: Home} ^
5 problems (5 errors, 0 warnings)
@ ./src/main.js 5: 0-30 @ multi ./build/dev-client ./src/main.js
Listening at link
Vue js
import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/components/Home'
Vue.use(Router)
export default new Router({
routes:[
{path:'/',component:Home}
]
})