You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
414 B

import html from "html";
import { useAppStore } from "../store/index.js";
export default {
template: html`<router-link to="/" class="logo">
<div class="flex h-full items-center">
<img src="/assets/logo.svg" />
<h1 v-if="!appStore.isMenuCollapse">{{$t('application')}}</h1>
</div>
</router-link>`,
setup() {
const appStore = useAppStore();
return {
appStore,
};
},
};