mobilizon.chapril.org-mobil.../js/src/views/About/RulesView.vue
Thomas Citharel 48935e2168
Add global search
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-08-28 10:02:06 +02:00

32 lines
793 B
Vue

<template>
<div class="container mx-auto px-2" v-if="config">
<h1>{{ t("Rules") }}</h1>
<div
class="prose dark:prose-invert"
v-html="config.rules"
v-if="config.rules"
/>
<p v-else>{{ t("No rules defined yet.") }}</p>
</div>
</template>
<script lang="ts" setup>
import { RULES } from "@/graphql/config";
import { IConfig } from "@/types/config.model";
import { useQuery } from "@vue/apollo-composable";
import { computed } from "vue";
import { useI18n } from "vue-i18n";
const { result: configResult } = useQuery<{ config: IConfig }>(RULES);
const config = computed(() => configResult.value?.config);
const { t } = useI18n({ useScope: "global" });
// metaInfo() {
// return {
// title: this.t("Rules") as string,
// };
// },
</script>