Browse
For agents
About
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder
/
3.6.61
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder
v3.6.61
Switch version
6.2.14
6.2.13
6.2.12
6.2.10
6.2.11
6.2.9
6.2.8
6.2.7
6.2.6
6.2.5
6.2.4
6.2.3
6.2.2
3.6.22
3.6.31
3.6.40
3.6.41
3.6.42
3.6.50
3.6.51
3.6.60
3.6.61
3.6.62
3.6.64
3.6.65
All 196 releases
Overview
Code
fluentform
/
resources
/
assets
/
common
/
errorView.vue
errorView.vue
in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 3.6.61, at resources/assets/common/errorView.vue
30 lines
565 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
template
>
2
<
div
v-if
=
"
errors.has(field)
"
class
=
"
el-form-item__error
"
>
3
<
p
>
{{ errors.first(field) }}
</
p
>
4
</
div
>
5
</
template
>
6
7
<
script
>
8
export
default
{
9
name
:
'
errorView
'
,
10
props
:
[
'
field
'
,
'
errors
'
]
11
}
12
</
script
>
13
14
<
style
lang
=
"
scss
"
>
15
.
is-error
.
el-input__inner
{
16
border-color
:
#
ff4949
;
17
}
18
19
.
el-form-item__error
{
20
/*
position: unset;
*/
21
}
22
23
.
el-form-item__error
{
24
position
:
relative
!important
;
25
p
{
26
margin-bottom
:
0
px
;
27
margin-top
:
0
px
;
28
}
29
}
30
</
style
>