blob: b839fad7ff1af7341b4b478cd60c7fa21d3bc8d3 [file] [log] [blame]
<template>
<div class="hidden">
<!-- These two links are for generate.crawler -->
<nuxt-link to="zh/get-started">中文</nuxt-link>
<nuxt-link to="en/get-started">English</nuxt-link>
</div>
</template>
<script lang="ts">
import Vue from 'vue'
export default Vue.extend({
mounted() {
this.$router.push('get-started')
}
})
</script>
<style></style>