2019-02-12 10:58:11 +02:00

21 lines
350 B
Vue

<template>
<md-card
class="md-card-nav-tabs"
:class="{ 'no-label': noLabel, 'md-card-plain': tabsPlain }"
>
<md-card-content>
<slot name="content"></slot>
</md-card-content>
</md-card>
</template>
<script>
export default {
name: "nav-tabs-card",
props: {
noLabel: Boolean,
tabsPlain: Boolean
}
};
</script>