mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
358 B
15 lines
358 B
<script setup lang="ts">
|
|
import DefaultTheme from 'vitepress/theme'
|
|
import HomeHeroCopy from './HomeHeroCopy.vue'
|
|
|
|
const INSTALL_COMMAND = 'npx vitepress init'
|
|
</script>
|
|
|
|
<template>
|
|
<DefaultTheme.Layout>
|
|
<template #home-hero-actions-before-actions>
|
|
<HomeHeroCopy :command="INSTALL_COMMAND" />
|
|
</template>
|
|
</DefaultTheme.Layout>
|
|
</template>
|