Vue setup script returns early?
<p>Is it possible to return early in a Vue setup script? </p>
<pre class="brush:html;toolbar:false;"><template>
<div v-if="error || !data">Fallback content...</div>
<div v-else>Page content...</div>
</template>
<script setup lang="ts">
// ...
const { data, error } = await fetchApi()
// Early return here? E.g., if (error || !data) return
// ...
// Lots of code which doesn't need to run if error.
// E.g., calculation of variables only used in the page content.
// ...
</script>
</pre>
<p>Note: I come from the React world and am fairly new to Vue. </p>