Settings added (only one part), notification started and highlight added

This commit is contained in:
danielvici123
2024-11-10 18:10:28 +01:00
parent 860cd027cd
commit 2352c25c05
20 changed files with 526 additions and 31 deletions

View File

@@ -0,0 +1,27 @@
<script setup lang="ts">
import { ref } from 'vue';
const props = defineProps({
selectedNotification: String
});
const selectedNotification = ref('');
function handleUpdateNotification(setting: string) {
selectedNotification.value = setting;
}
</script>
<template>
<div class="flex flex-col align-middle space-y-5 pt-3 pl-3 pb-4 font-bold text-xl text-grau2">
<label>All</label>
<label>You Following</label>
<label>Messages</label>
<label>Other</label>
</div>
</template>
<style scoped>
</style>