[Vuejs]-How to properly move helper components into children components in Vuetify?

1👍

There are 3 possible solutions for your issue:

  1. Using fragments – https://github.com/privatenumber/vue-frag
  2. Using render function instead of a component template – https://v2.vuejs.org/v2/guide/render-function.html
  3. Using CSS display: contents to effectively replace the wrapper with its content – https://developer.mozilla.org/en-US/docs/Web/CSS/display-box

Leave a comment