Skip to content

waitUntilMounted

Category
Vue
Environment
Vue
Last updated
2024/04/22 08:13:11

Demo

source
unmount

Usage

vue
<script setup>
import { waitUntilMounted } from "@bernankez/utils/vue";

async function init() {
  await waitUntilMounted();
  // Will excute on mounted
}

init();
</script>

Source

SourceDemoDocs