2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-07 07:02:24 +03:00

#22 Initial support for vertical tabs

This commit is contained in:
cristijora
2017-09-27 22:53:50 +03:00
parent 74f04a52b2
commit 0cdc0485d8
3 changed files with 37 additions and 4 deletions
+6 -1
View File
@@ -7,7 +7,8 @@
<form-wizard @on-complete="onComplete"
@on-change="handleChange"
:start-index.sync="activeIndex"
shape="tab"
layout="vertical"
steps-classes="steps-size"
color="#e74c3c">
<tab-content v-for="tab in tabs" :title="tab" :key="tab">{{tab}}</tab-content>
<transition name="fade" mode="out-in">
@@ -66,6 +67,10 @@
@import "loader.css";
</style>
<style lang="scss">
.steps-size{
width: 200px;
height: 400px;
}
$border-radius-extreme: 6px !default;
$white-color: white;
$gray-input-bg: #F3F2EE !default;