style: run linter
This commit is contained in:
parent
bb724f581b
commit
b57c5a9be8
7 changed files with 94 additions and 99 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue