mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-06-08 21:02:25 +03:00
25b2c548a6
Build files
31 lines
453 B
Vue
31 lines
453 B
Vue
<template>
|
|
<div v-if="show" class="tab-container">
|
|
<slot>
|
|
</slot>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default{
|
|
name: 'tab-content',
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
beforeChange: {
|
|
type: Function
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
show: false,
|
|
active: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|