mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-26 07:32:01 +00:00
17 lines
581 B
Vue
17 lines
581 B
Vue
<script setup lang="ts">
|
|
onMounted(() => import('~/components/BreaksServer'))
|
|
onBeforeMount(() => import('~/components/BreaksServer'))
|
|
onBeforeUpdate(() => import('~/components/BreaksServer'))
|
|
onRenderTracked(() => import('~/components/BreaksServer'))
|
|
onRenderTriggered(() => import('~/components/BreaksServer'))
|
|
onActivated(() => import('~/components/BreaksServer'))
|
|
onDeactivated(() => import('~/components/BreaksServer'))
|
|
onBeforeUnmount(() => import('~/components/BreaksServer'))
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
This page should not crash when rendered.
|
|
</div>
|
|
</template>
|