elk/pages/settings/profile/featured-tags.vue
2022-12-30 04:14:13 +08:00

25 lines
544 B
Vue

<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
</script>
<template>
<MainContent back>
<template #title>
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<div i-ri:test-tube-line />
<span>{{ $t('settings.profile.featured_tags.label') }}</span>
</div>
</template>
<div text-center mt-10>
<h1 text-4xl>
🚧
</h1>
<h3 text-xl>
{{ $t('settings.profile.featured_tags.label') }}
</h3>
</div>
</MainContent>
</template>