In Vue 3, it is possible to create components with multiple root elements, without the need for a wrapping element. This option is also known as a fragment.
In React, this has been possible for a long time, but in Vue, you need to use custom third-party plugins such as vue-fragment (https://github.com/Thunberg087/vue-fragment) to use this feature.
In this recipe, you will learn how to create a component with multiple root elements, and how it could be used with a <template> section and a render function.