Clean Sidebar
This commit is contained in:
parent
df872aafa6
commit
b4edb9d8f8
1 changed files with 3 additions and 10 deletions
|
@ -1,20 +1,13 @@
|
|||
<script setup>
|
||||
import { ref } from 'vue'
|
||||
import SidebarIcon from "./SidebarIcon.vue";
|
||||
const icon = ref('fire');
|
||||
const icon2 = ref('plus');
|
||||
const icon3 = ref('poo');
|
||||
const text = ref('Fire');
|
||||
const text2 = ref('Plus');
|
||||
const text3 = ref('Poo');
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="fixed top-0 left-0
|
||||
m-0 h-screen bg-slate-900
|
||||
text-white shadow-lg w-16 flex flex-col">
|
||||
<SidebarIcon :icon="icon" :text="text"></SidebarIcon>
|
||||
<SidebarIcon :icon="icon2" :text="text2"></SidebarIcon>
|
||||
<SidebarIcon :icon="icon3" :text="text3"></SidebarIcon>
|
||||
<SidebarIcon icon="fire" text="Fire"></SidebarIcon>
|
||||
<SidebarIcon icon="plus" text="Plus"></SidebarIcon>
|
||||
<SidebarIcon icon="poo" text="Poo"></SidebarIcon>
|
||||
</div>
|
||||
</template>
|
Loading…
Add table
Add a link
Reference in a new issue