Files
hestiacp/docs/install.md

24 lines
741 B
Markdown
Raw Normal View History

2024-03-19 22:05:27 +03:00
---
layout: page
title: Install
---
<script setup>
import InstallPageTitle from "./.vitepress/theme/components/InstallPageTitle.vue";
import InstallOptions from "./.vitepress/theme/components/InstallOptions.vue";
import InstallOptionsSection from "./.vitepress/theme/components/InstallOptionsSection.vue";
import { options } from "./_data/options";
import { languages } from "./_data/languages";
</script>
<InstallPage>
<InstallPageTitle>
2024-10-13 22:52:57 +03:00
<template #title>Генератор установочной команды</template>
2024-03-19 22:05:27 +03:00
</InstallPageTitle>
<InstallOptionsSection>
<template #list>
<InstallOptions :items="options" :languages="languages"></InstallOptions>
</template>
</InstallOptionsSection>
</InstallPage>