mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
14 lines
199 B
Vue
14 lines
199 B
Vue
<template>
|
|
<div>
|
|
don't look at this
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default defineNuxtComponent({
|
|
asyncData () {
|
|
throw new Error('OH NNNNNNOOOOOOOOOOO')
|
|
},
|
|
})
|
|
</script>
|