2021-07-31 22:45:28 +00:00
|
|
|
<template>
|
|
|
|
<div></div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-10-07 17:39:47 +00:00
|
|
|
import { defineComponent } from "@nuxtjs/composition-api";
|
2021-07-31 22:45:28 +00:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
setup() {
|
2021-10-07 17:39:47 +00:00
|
|
|
return {};
|
|
|
|
},
|
|
|
|
head() {
|
|
|
|
return {
|
|
|
|
title: this.$t("settings.profile") as string,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
2021-07-31 22:45:28 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
</style>
|