mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +00:00
28 lines
569 B
Vue
28 lines
569 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<h3>Click one of the links below and navigate back in history before the page has fully loaded. Pass if no error page shown.</h3>
|
||
|
<ul>
|
||
|
<li v-for="test in tests" :key="test">
|
||
|
<nuxt-link :to="'navigation/' + test">
|
||
|
{{ test }}
|
||
|
</nuxt-link>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
computed: {
|
||
|
tests () {
|
||
|
return [
|
||
|
'asyncData-error',
|
||
|
'asyncData-throw',
|
||
|
'middleware-asyncData-error',
|
||
|
'middleware-asyncData-throw'
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|