---
title: defineExpose Must Be Called Before Any Await
impact: HIGH
impactDescription: Properties exposed after await are inaccessible to parent component refs
type: gotcha
tags: [vue3, script-setup, defineExpose, async, component-refs]
---
# defineExpose Must Be Called Before Any Await
**Impact: HIGH** - In `
{{ data }}
```
```vue
```
**Correct:**
```vue
{{ data }}
```
```vue
Loading...
{{ data }}
```
```vue
```
## Why This Happens
Vue's compiler transforms `