[Vuejs]-Vue (typescript) Consider renaming the property

3👍

Why do you have 2 successive @Component instructions?

@Component({
 components: {
   mdButton,
   mdMenu, 
   mdIcon
 }
})

@Component

Remove the second one and this should work.

Leave a comment