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.
24 lines
741 B
24 lines
741 B
---
|
|
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>
|
|
<template #title>Генератор установочной команды</template>
|
|
</InstallPageTitle>
|
|
<InstallOptionsSection>
|
|
<template #list>
|
|
<InstallOptions :items="options" :languages="languages"></InstallOptions>
|
|
</template>
|
|
</InstallOptionsSection>
|
|
</InstallPage>
|