17 lines
307 B
Vue
17 lines
307 B
Vue
<script setup lang="ts">
|
|
// meta
|
|
|
|
definePageMeta({
|
|
middleware: "check-is-logged-in",
|
|
layout: "profile",
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full flex flex-col gap-5">
|
|
<ProfilePageTitle title="اعلان های شما" icon="bi:bell" />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|