Vue templates are compiled to render functions that return virtual DOM. Usually you write templates, but you can write the render function (or JSX) directly when you need the full power of JavaScript to generate the UI programmatically.
A render function
{ h } ;
{
: [],
() {
(, slots.());
},
};
