-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/invite-user-admin-setup-etc
- Loading branch information
Showing
27 changed files
with
480 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
<script setup lang="ts"> | ||
import { useDevice } from '#imports' | ||
import { useDevice, useRouter, useRuntimeConfig } from '#imports' | ||
const { isMobile } = useDevice() | ||
const router = useRouter() | ||
const config = useRuntimeConfig() | ||
const handle = (path: string) => { | ||
router.push(path) | ||
} | ||
</script> | ||
|
||
<template> | ||
<VFSpHeader v-if="isMobile" /> | ||
<VFHeader v-if="!isMobile" /> | ||
<VFSpHeader v-if="isMobile"> | ||
<VFLocaleSwitch v-if="config.public.enableSwitchLocale" :router @toggle="handle" /> | ||
</VFSpHeader> | ||
<VFHeader v-if="!isMobile"> | ||
<VFLocaleSwitch v-if="config.public.enableSwitchLocale" :router @toggle="handle" /> | ||
</VFHeader> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ | |
.title { | ||
text-align: center; | ||
line-height: 1.2; | ||
} | ||
.body { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { useI18n } from '#i18n' | ||
import { useLocaleCurrent } from '@/composables/useLocaleCurrent' | ||
|
||
export function useTranslation() { | ||
const { t, te } = useI18n() | ||
const { locale } = useLocaleCurrent() | ||
function translate(key: string) { | ||
return te(key, locale.value) ? t(key) : '' | ||
} | ||
|
||
return { | ||
/** | ||
* return translation or empty string | ||
* https://github.com/vuejs-jp/vuefes-2024/pull/136#discussion_r1597312717 | ||
*/ | ||
translate | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
In order to make Vue Fes Japan 2024 a better conference where people involved in Vue.js gather, we are looking for sponsors. Please refer to the materials for detailed information such as sponsorship plans. | ||
|
||
The first round of applications has now closed, and a second round of applications will begin soon, as there are still openings in some plans. Companies that have already been selected for the first round of applications can still apply for additional plans. | ||
Specific details will be announced on the official website and the official X account ([@vuefes](https://x.com/vuefes){:target=“\_blank”}). | ||
A second round of applications is currently being accepted. Companies whose plans were confirmed in the first round of applications can still apply for additional plans. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
Vue.js に関わる人々が集まる Vue Fes Japan 2024 をより良いカンファレンスにするため、スポンサー募集をします。スポンサープランなどの詳しい内容は資料をご参照ください。 | ||
|
||
現在、一次募集が終了し、一部のプランに空き枠があるため近日中に二次募集を開始予定です。一次募集でプランが確定された企業様におかれましても、追加お申し込みも可能となっています。 | ||
具体的な募集内容については、公式サイトや X 公式アカウント([@vuefes](https://x.com/vuefes){:target="\_blank"})にてご案内します。 | ||
現在、二次募集を実施しております。一次募集でプランが確定された企業様におかれましても、追加お申し込みも可能となっています。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,8 @@ useHead({ | |
|
||
<template> | ||
<GlobalHeader /> | ||
<div> | ||
<main> | ||
<slot /> | ||
</div> | ||
</main> | ||
<FooterPageSection /> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,4 @@ useHead({ | |
<MessagePageSection /> | ||
<SponsorPageSection /> | ||
<FormPageSection /> | ||
<FooterPageSection /> | ||
</template> |
Oops, something went wrong.