Skip to content

Instantly share code, notes, and snippets.

@coltborg
Created December 10, 2019 05:13
Show Gist options
  • Save coltborg/02347c0baab51a793c597a15077b5eb3 to your computer and use it in GitHub Desktop.
Save coltborg/02347c0baab51a793c597a15077b5eb3 to your computer and use it in GitHub Desktop.
Vue 3 Essentials - Lifecycle hooks
<script>
import { onBeforeMount, onMounted } from "vue";
export default {
setup() {
onBeforeMount(() => {
console.log("Before mount!");
});
onMounted(() => {
console.log("Mounted!");
});
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment