Stackedit/src/components/modals/common/Tab.vue
benweet abd0890512 Added favicons.
Added sponsorship options.
Added pdf and pandoc export.
Added emoji and mermaid extensions.
Added find/replace support.
Added HTML template with TOC.
Updated welcome file.
2017-11-04 16:59:48 +00:00

14 lines
310 B
Vue

<template>
<div class="tabs__tab flex flex--row" :class="{'tabs__tab--active': active}" role="tab">
<a class="flex flex--column flex--center" href="javascript:void(0)" @click="$emit('click')">
<slot></slot>
</a>
</div>
</template>
<script>
export default {
props: ['active'],
};
</script>