21 lines
522 B
Vue
21 lines
522 B
Vue
|
<script setup>
|
||
|
import { useLayout } from '@/Layouts/composables/layout';
|
||
|
|
||
|
import { computed } from 'vue';
|
||
|
|
||
|
const { layoutConfig } = useLayout();
|
||
|
|
||
|
const logoUrl = computed(() => {
|
||
|
return `/layout/images/${layoutConfig.darkTheme.value ? 'logo-white' : 'logo-dark'}.svg`;
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="layout-footer">
|
||
|
<img :src="logoUrl" alt="Logo" height="20" class="mr-2" />
|
||
|
by
|
||
|
<span class="font-medium ml-2">PrimeVue</span>
|
||
|
</div>
|
||
|
</template>
|
||
|
<style lang="scss" scoped></style>
|