dabernathy89 / vue-query-builder

A UI component for building complex queries with nested conditionals.
https://dabernathy89.github.io/vue-query-builder/
MIT License
644 stars 158 forks source link

Added missing component name to VueQueryBuilder #27

Closed Friedricj closed 6 years ago

Friedricj commented 6 years ago

I have added the missing component name to the VueQueryBuilder component.

export default {
   name: "vue-query-builder",
  // ...

} as it is recommended by the vue.js styleguide.

) This fixes some problems when the component is used within nested components.

I have applied ESlint coding rules for ES6 to the edited files

If you don't like them then please just add the name property.

dabernathy89 commented 6 years ago

Thanks @Friedricj! I will add the name attribute, but i'm going to leave the code style as is for now. I do want to settle on a format at some point but it's not a big concern for me at the moment.

I don't know if there is a way for me to pull just the change adding the name property, so I think i'll need to do that separately.