<template>
<div>
<router-link to="/" class="home"> Home </router-link>
</div>
</template>
<script></script>
<style lang="css" scoped>
.home {
color: black; /**/
}
.home:active {
color: green; /* changes the color of the home text to green when clicked*/
}
</style>