mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-06-13 10:52:26 +03:00
28 lines
367 B
Vue
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>
|
|
|