1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-02 11:42:43 +00:00
Nuxt/test/fixtures/basic/pages/instance/error.vue

14 lines
179 B
Vue
Raw Normal View History

<script lang="ts">
export default defineComponent({
data () {
throw new Error('💀')
}
})
</script>
<template>
<div>
This should not display.
</div>
</template>