2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-05-17 05:49:36 +03:00

Hide header if no title

I don't use the title bar so I wish I could remove it and hide the empty space at the top
This commit is contained in:
Emil Moe
2018-03-13 13:33:17 +01:00
committed by GitHub
parent 017e93704c
commit 908c69beb4
+1 -1
View File
@@ -1,7 +1,7 @@
<template>
<div class="vue-form-wizard" :class="[stepSize, {vertical: isVertical}]" @keyup.right="focusNextTab"
@keyup.left="focusPrevTab">
<div class="wizard-header">
<div class="wizard-header" v-if="$slots['title']">
<slot name="title">
<h4 class="wizard-title">{{title}}</h4>
<p class="category">{{subtitle}}</p>