Settings added (only one part), notification started and highlight added
This commit is contained in:
27
src/components/notifications_components/notif_sidebar.vue
Normal file
27
src/components/notifications_components/notif_sidebar.vue
Normal 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>
|
||||
Reference in New Issue
Block a user