mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 23:09:59 +00:00
12 lines
262 B
Vue
12 lines
262 B
Vue
![]() |
<template>
|
||
|
<li class="py-2 px-4 hover:text-gray-200" :class="{'pb-1 border-b border-gray-400 text-gray-200': active, 'text-gray-500': !active}">
|
||
|
<slot></slot>
|
||
|
</li>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
export default {
|
||
|
props: ["active"],
|
||
|
};
|
||
|
</script>
|