DEV Community

Discussion on: VueJS: Rating component with stars

Collapse
 
ralmaz profile image
Roman Almazov

Looks better when data like this)

data: () => ({
  something: true
})

Also, VueCli3 have aliases, we can use

import MyComponent '@/components/MyComponent'
// instead
import MyComponent '../.../.../../components/MyComponent'
Collapse
 
mandrewcito profile image
Andrés Baamonde Lozano

I will make a code update, arrow function looks better. Thank you!