Nuxt/docs/content/index.vue

15 lines
231 B
Vue
Raw Normal View History

2021-06-07 11:49:37 +00:00
<template>
<nuxt-link to="/get-started/installation">
2021-06-07 11:49:37 +00:00
Getting Started
</nuxt-link>
</template>
<script>
export default {
asyncData ({ redirect }) {
redirect('/get-started/installation')
2021-06-07 11:49:37 +00:00
return {}
}
}
</script>