0 votes
in VueJS by
How to create functional components using vue loader?

1 Answer

0 votes
by

You can create functional components by adding functional attribute to template block,

<template functional>
  <div>{{ props.msg }}</div>
</template>

Related questions

0 votes
asked Sep 7, 2023 in VueJS by DavidAnderson
0 votes
asked Sep 12, 2023 in VueJS by AdilsonLima
...