mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +00:00
15 lines
227 B
Vue
15 lines
227 B
Vue
<template>
|
|
<nuxt-link to="/get-started/installation">
|
|
Get Started
|
|
</nuxt-link>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
asyncData ({ redirect }) {
|
|
redirect('/get-started/installation')
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|