Warehouse article/improve modal
This commit is contained in:
@@ -6,6 +6,7 @@ Vue.component('tt-input', {
|
||||
placeholder: String,
|
||||
required: Boolean,
|
||||
row: Boolean,
|
||||
formLabel: Boolean,
|
||||
value: [String, Number],
|
||||
hint: String,
|
||||
additionalProps: Object,
|
||||
@@ -27,7 +28,7 @@ Vue.component('tt-input', {
|
||||
<div :class="{'row': row, 'form-group' : !noFormGroup, 'tt-input-with-icon': prefixIcon}">
|
||||
<slot name="prepend"></slot>
|
||||
<label
|
||||
:class="{'col-form-label': row, 'col-sm-4': row, 'col-form-label-sm': sm && row}"
|
||||
:class="{'col-form-label': row || formLabel, 'col-sm-4': row, 'col-form-label-sm': sm && row}"
|
||||
v-if="label"
|
||||
:for="label">{{ label }}</label>
|
||||
<i v-if="prefixIcon" :class="['prefix-icon', prefixIcon]"></i>
|
||||
|
||||
Reference in New Issue
Block a user