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.
25 lines
374 B
25 lines
374 B
<template>
|
|
<div class="theme-container">
|
|
<h1>{{ $site.title }}</h1>
|
|
<p>{{ $site.description }}</p>
|
|
<Content/>
|
|
</div>
|
|
<Debug/>
|
|
</template>
|
|
|
|
<script>
|
|
import { Debug } from 'vitepress'
|
|
|
|
export default {
|
|
components: {
|
|
Debug: __DEV__ ? Debug : () => null
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.theme-container {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
</style>
|