Template Logo
-
The Logo component can be found in the
with your own logo SVG image OR logo image URL.src/components/widget/logo.vue
-
Then user has to call logo component wherever logo has to show eg.
public/
You can add a image URL icon to your Website using the following code:
<template>
<router-link to="/" class="navbar-brand m-0">
<span class="logo-normal">
<img :src="generateImgPath('/assets/images/logo/logo.png')" alt="logo" class="img-fluid" loading="lazy">
</span>
</router-link>
</template>
You can call logo component wherever logo has to show:
<Logo />