Skip to content

Use VUE to describe Vue #3144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions .vitepress/theme/components/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,24 +85,24 @@ onMounted(load)

<section id="highlights" class="vt-box-container">
<div class="vt-box">
<h2>Approachable</h2>
<h2>Versatile</h2>
<p>
Builds on top of standard HTML, CSS and JavaScript with intuitive
API and world-class documentation.
A rich, incrementally adoptable ecosystem that scales between a
library and a full-featured framework.
</p>
</div>
<div class="vt-box">
<h2>Performant</h2>
<h2>User-friendly</h2>
<p>
Truly reactive, compiler-optimized rendering system that rarely
requires manual optimization.
Builds on top of standard HTML, CSS and JavaScript with intuitive
API and world-class documentation.
</p>
</div>
<div class="vt-box">
<h2>Versatile</h2>
<h2>Efficient</h2>
<p>
A rich, incrementally adoptable ecosystem that scales between a
library and a full-featured framework.
Truly reactive, compiler-optimized rendering system that rarely
requires manual optimization.
</p>
</div>
</section>
Expand Down Expand Up @@ -286,6 +286,10 @@ html:not(.dark) .accent,
background-color: transparent;
}

#highlights .vt-box h2::first-letter{
color: var(--vt-c-green);
}

#spsrs {
max-width: 900px;
margin: 0px auto;
Expand Down