-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d688f1f
commit 00a14ee
Showing
15 changed files
with
3,438 additions
and
416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
src/vitepress | ||
src/docs/config/setup | ||
README.* | ||
README.* | ||
src/docs/public/user-avatars/ | ||
src/docs/.vitepress/cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// generated by unplugin-vue-components | ||
// We suggest you to commit this file into source control | ||
// Read more: https://github.com/vuejs/core/pull/3399 | ||
import '@vue/runtime-core' | ||
|
||
export {} | ||
|
||
declare module '@vue/runtime-core' { | ||
export interface GlobalComponents { | ||
Contributors: typeof import('./components/Contributors.vue')['default'] | ||
HomePage: typeof import('./components/HomePage.vue')['default'] | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
packages/mermaid/src/docs/.vitepress/components/HomePage.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<script setup lang="ts"> | ||
import { VPTeamMembers } from 'vitepress/theme'; | ||
import { teamMembers } from '../contributors'; | ||
</script> | ||
|
||
<template> | ||
<div class="content"> | ||
<div class="content-container"> | ||
<main class="main"> | ||
<div class="vp-doc" flex flex-col items-center mt-10> | ||
<h2 id="meet-the-team" op50 font-normal p="t-10 b-2">Meet The Team</h2> | ||
<div w-full p-10> | ||
<VPTeamMembers size="small" :members="teamMembers" /> | ||
</div> | ||
<h2 id="the-team" op50 font-normal pt-5 pb-2>Contributors</h2> | ||
<p text-lg max-w-200 text-center leading-7> | ||
<Contributors /> | ||
<br /> | ||
<a href="https://chat.vitest.dev" rel="noopener noreferrer">Join the community</a> and | ||
get involved! | ||
</p> | ||
</div> | ||
</main> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.