2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-13 10:52:26 +03:00
Files
vue-form-wizard/src/components/TabContent.vue
T
2017-04-15 23:06:11 +03:00

28 lines
367 B
Vue

<template>
<div v-if="show">
<slot>
</slot>
</div>
</template>
<script>
export default{
name: 'tab-content',
props: {
title: {
type: String,
default: ''
},
beforeChange: {
type: Function
}
},
data () {
return {
show: false,
active: false
}
}
}
</script>