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