3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-18 23:09:59 +00:00
zeppelin/dashboard/src/components/Tab.vue

12 lines
262 B
Vue
Raw Normal View History

<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>