jointrashposs/pages/tools/tools-template-ignore.vue
2023-12-04 22:47:06 +09:00

34 lines
805 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
ツール集のテンプレート
翻訳キーの `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>