Skip to content
Advertisement

Why won’t my async call fire inside this Vue 3 component (using composition API)?

I’m trying to make an async call to fetch data from my Fauna database. But I can’t get the async call to fire.

Inside the setup() function I have console.log("Setup is working"); and that works as expected. It shows on page load.

Then inside the callApi async function I have console.log("callApi is working");. That async function is called on a button click event. But when clicking the button nothing happens. The function is not fired and nothing prints to the console.

What am I doing wrong?

JavaScript
JavaScript

Advertisement

Answer

Usage with Templates

If setup returns an object, the properties on the object can be accessed in the component’s template

You just need to return the properties you want available to your template

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement