Nuxt/docs/content/index.vue
Daniel Roe 44aeaae941
docs: getting started (#188)
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
2021-06-08 23:09:36 +02:00

15 lines
231 B
Vue

<template>
<nuxt-link to="/get-started/installation">
Getting Started
</nuxt-link>
</template>
<script>
export default {
asyncData ({ redirect }) {
redirect('/get-started/installation')
return {}
}
}
</script>