<!-- STOP! Please use the Discussion tab instead. We will likely be disabling issues on this repo in the future, for now we are keeping it only due to the existing issues. --> ```javascript <script setup async> import { ref, watch } from 'vue' import HelloWorld from './components/HelloWorld.vue' import { getMedInfos } from './api/medInfo' const msg = ref('msg') export const medInfos = await getMedInfos(1, 10) </script> ``` when I use the await function in the tag '<script setup>' I got the error <script setup> cannot contain ES module exports what should i do thanks for the answer