mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
25 lines
338 B
Vue
25 lines
338 B
Vue
<template>
|
|
<div>
|
|
<h1>About</h1>
|
|
<button
|
|
type="button"
|
|
@click="onClick"
|
|
>
|
|
error click
|
|
</button>
|
|
<nuxt-link to="/">
|
|
back
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
onClick () {
|
|
this.$nuxt.context.error(new Error('test error'))
|
|
}
|
|
}
|
|
}
|
|
</script>
|