<a
class="become-sponsor button white"
href="https://github.com/sponsors/posva"
- >Become a Sponsor!</a
+ >{{ translations[$siteByRoute.themeConfig.lang] || translations.en }}</a
>
</div>
</div>
<script setup>
import HomeSponsorsGroup from './HomeSponsorsGroup.vue'
import sponsors from './sponsors.json'
+
+const translations = {
+ 'en-US': 'Become a Sponsor!',
+ 'zh-CN': '成为赞助者!',
+}
</script>
<style scoped>
.sponsors_outer {
text-align: center;
- padding: 35px 40px 45px;
- margin: 0 -2.5rem;
+ padding: 35px 20px 45px;
background-color: var(--c-bg-accent);
/* transition when toggling dark mode */
transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
heroImage: /logo.png
actionText: Get Started →
-actionLink: /introduction.html
+actionLink: /installation.html
features:
- title: 🛣 Expressive route syntax
- details: Define static and dynamic routes with an intuitive syntax.
+ details: Define static and dynamic routes with an intuitive and powerful syntax.
- title: 🛑 Fine-grained Navigation control
details: Intercept any navigation and precisely control its outcome.
- - title: ⚙️ Devtools support
- details: Pinia hooks into Vue devtools to give you a enhanced development experience in both Vue 2 and Vue 3.
- - title: 🔌 Extensible
- details: React to store changes to extend Pinia with transactions, local storage synchronization, etc.
- - title: ð\9f\8f\97 Modular by design
- details: Build multiple stores and let your bundler code split them automatically.
- - title: ð\9f\93¦ Extremely light
- details: Pinia weights around 1kb, you will forget it's even there!
+ - title: 🧱 Component-based configuration
+ details: Map each route to the component that should display.
+ - title: 🔌 History modes
+ details: Choose between HTML5, Hash or Memory history modes.
+ - title: ð\9f\8e\9a Scroll control
+ details: Precisely control the scroll position in every page.
+ - title: ð\9f\8c\90 Automatic Encoding
+ details: Directly use unicode characters (你好) in your code.
footer: MIT Licensed | Copyright © 2014-present Evan You, Eduardo San Martin Morote
---