generated from alphane/template
unused component
This commit is contained in:
@@ -1,50 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="logo">
|
|
||||||
<RouterLink
|
|
||||||
to="/dashboard"
|
|
||||||
class="d-flex"
|
|
||||||
>
|
|
||||||
<img
|
|
||||||
class="ml-0 mt-1"
|
|
||||||
style="height: 36px; transform: rotate(-12deg)"
|
|
||||||
:src="AppLogoSmall"
|
|
||||||
/>
|
|
||||||
<div v-if="sidebarMini || mdAndDown"></div>
|
|
||||||
<div
|
|
||||||
v-else
|
|
||||||
class="d-flex"
|
|
||||||
style="width: 200px"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="mt-1 ml-3"
|
|
||||||
style="font-size: 26px; color: #505682"
|
|
||||||
>
|
|
||||||
CALEB BURKE DEV
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</RouterLink>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup>
|
|
||||||
import AppLogoSmall from "@/assets/app_logo_small.png"
|
|
||||||
|
|
||||||
import { useDisplay } from "vuetify"
|
|
||||||
import useInterface from "@/use/use-interface"
|
|
||||||
import { watch } from "vue"
|
|
||||||
|
|
||||||
const { sidebarMini, setSidebarMini } = useInterface()
|
|
||||||
const { mdAndDown } = useDisplay()
|
|
||||||
|
|
||||||
watch(mdAndDown, (newVal) => {
|
|
||||||
if (newVal === true) setSidebarMini(false)
|
|
||||||
})
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.logo a {
|
|
||||||
text-decoration: none !important;
|
|
||||||
color: #fff;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
Reference in New Issue
Block a user