mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-23 12:14:22 +08:00
21 lines
350 B
Vue
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>
|