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>
...