Nuxt/test/fixtures/basic/pages/route-rules/spa.vue

11 lines
175 B
Vue
Raw Normal View History

<template>
<div>
<div>
should not be rendered on ssr
</div>
<NuxtLink to="/forbidden">
should throw a 404 error
</NuxtLink>
</div>
</template>