0 votes
in VueJS by
How do you access global properties of functional components?

1 Answer

0 votes
by

If you need to access properties defined globally on Vue.prototype then you can access them on parent,

<template functional>
  <div>{{ parent.$someProperty }}</div>
</template>

Related questions

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