mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 17:03:50 +01:00
34 lines
805 B
Vue
34 lines
805 B
Vue
<!--
|
||
ツール集のテンプレート
|
||
|
||
翻訳キーの `aaaaaaaa` となっている場所を置き換えればあとは普通のVueとほぼ同じ
|
||
コンポーネントは、命名規則に従っている限り自動インポート
|
||
ref/reactiveなどのvue関連も自動インポート
|
||
-->
|
||
|
||
<template>
|
||
<div class='container mx-auto max-w-screen-xl px-6 py-6'>
|
||
<h1 class='text-2xl lg:text-3xl font-bold mb-4'>
|
||
{{ $t('_aaaaaaaa.title') }}
|
||
</h1>
|
||
|
||
<!-- ここに書く! -->
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang='ts'>
|
||
definePageMeta({
|
||
layout: 'tools',
|
||
});
|
||
|
||
const { t } = useI18n();
|
||
const route = useRoute();
|
||
|
||
route.meta.title = t('_aaaaaaaa.title');
|
||
route.meta.description = t('_aaaaaaaa.description');
|
||
</script>
|
||
|
||
<style module>
|
||
|
||
</style>
|