style: run linter

This commit is contained in:
Sebin Nyshkim 2023-04-03 00:33:35 +02:00
parent bb724f581b
commit b57c5a9be8
7 changed files with 94 additions and 99 deletions

View file

@ -1,16 +1,16 @@
<script setup lang="ts">
import WelcomeHeader from "@/components/WelcomeHeader.vue";
import WelcomeHeader from '@/components/WelcomeHeader.vue'
</script>
<template>
<WelcomeHeader>
<template #main>{{ $t("welcomeHeader.mainTitle") }}</template>
<template #sub>{{ $t("welcomeHeader.subTitle") }}</template>
<template #main>{{ $t('welcomeHeader.mainTitle') }}</template>
<template #sub>{{ $t('welcomeHeader.subTitle') }}</template>
</WelcomeHeader>
<section>
<h3>{{ $t("home.heading") }}</h3>
<h3>{{ $t('home.heading') }}</h3>
<p v-for="p in $tm('home.paragraphs')">{{ p }}</p>
<p v-for="(p, i) in $tm('home.paragraphs')" :key="i">{{ p }}</p>
</section>
</template>