1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-03 23:14:42 +00:00
Nuxt/test/fixtures/basic/pages/error-string.vue

9 lines
103 B
Vue
Raw Normal View History

<script>
export default {
fetch() {
throw 'fetch error!' // eslint-disable-line
}
}
</script>