๐Change Logo
Change the Logo variants weather its Light or Dark you can make changes in following way.
Change Dark Logo
<template>
<div class="logo">
<RouterLink to="/">
... Your_Logo ...
</RouterLink>
</div>
</template>
<script setup lang="ts">
import { RouterLink } from "vue-router";
</script> Change Light Logo
<template>
<div class="logo">
<RouterLink to="/">
... Your_Logo ...
</RouterLink>
</div>
</template>
<script setup lang="ts">
import { RouterLink } from "vue-router";
</script> Last updated