xxxxxxxxxx
1
<template>
2
<section class="intro">
3
<div class="bg-image-vertical vh-100" style="background-color: #EFD3E4;
4
background-image: url(https://mdbootstrap.com/img/Photos/new-templates/search-box/img1.jpg);
5
">
6
<div class="mask d-flex align-items-center h-100">
7
<MDBContainer>
8
<p class="display-4 font-weight-bold mb-5 text-dark">Discover the Amazing City</p>
9
<MDBCard>
10
<MDBCardBody>
11
<MDBRow class="justify-content-center">
12
<MDBCol md="6" class="mb-3 mb-md-0">
13
<div id="basic" class="form-outline">
14
<MDBAutocomplete :filter="filterBasic" label="What are you looking for?" size="lg" />
15
</div>
16
</MDBCol>
17
<MDBCol md="4" class="mb-3 mb-md-0">
18
<div id="location" class="form-outline">
19
<MDBAutocomplete :filter="filterLocation" label="Location" size="lg" />
20
</div>
21
</MDBCol>
22
<MDBCol md="2">
23
<MDBBtn size="lg" color="secondary" class="btn-block" type="submit">Search</MDBBtn>
24
</MDBCol>
25
</MDBRow>
26
</MDBCardBody>
27
</MDBCard>
28
</MDBContainer>
29
</div>
30
</div>
31
</section>
32
</template>
xxxxxxxxxx
1
<style>
2
#app {
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
}
5
.fw-900 {
6
font-weight: 900;
7
}
8
9
.form-outline .form-control:focus~.form-label {
10
background-color: white;
11
z-index: 2;
12
padding-left: 4px;
13
padding-right: 4px;
14
}
15
16
html,
17
body,
18
.intro {
19
height: 100%;
20
}
21
22
.bg-image-vertical {
23
position: relative;
24
overflow: hidden;
25
background-repeat: no-repeat;
26
background-position: right center;
27
background-size: auto 100%;
28
}
29
30
.form-outline .form-control:focus ~ .form-notch .form-notch-leading {
31
border-top: 0.125rem solid #b23cfd;
32
border-bottom: 0.125rem solid #b23cfd;
33
border-left: 0.125rem solid #b23cfd;
34
}
35
.form-outline .form-control:focus ~ .form-notch .form-notch-middle {
36
border-color: #b23cfd;
37
}
38
.form-outline .form-control:focus ~ .form-notch .form-notch-trailing {
39
border-top: 0.125rem solid #b23cfd;
40
border-bottom: 0.125rem solid #b23cfd;
41
border-right: 0.125rem solid #b23cfd;
42
}
43
.form-outline .form-control:focus ~ .form-label {
44
color: #b23cfd;
45
}
46
.autocomplete-input.focused ~ .form-notch .form-notch-leading {
47
border-top: 2px solid #b23cfd;
48
border-bottom: 2px solid #b23cfd;
49
border-left: 2px solid #b23cfd;
50
transition: all 0.2s linear;
51
}
52
.autocomplete-input.focused ~ .form-notch .form-notch-middle {
53
border-color: #b23cfd;
54
}
55
.autocomplete-input.focused ~ .form-notch .form-notch-trailing {
56
border-color: #b23cfd;
57
}
58
.autocomplete-input.focused ~ .autocomplete-label {
59
color: #b23cfd;
60
}
61
</style>
xxxxxxxxxx
1
<script>
2
import {
3
MDBContainer,
4
MDBCard,
5
MDBCardBody,
6
MDBRow,
7
MDBCol,
8
MDBAutocomplete,
9
MDBBtn
10
} from "mdb-vue-ui-kit";
11
12
import {
13
ref
14
} from "vue"
15
16
export default {
17
name: "App",
18
components: {
19
MDBContainer,
20
MDBCard,
21
MDBCardBody,
22
MDBRow,
23
MDBCol,
24
MDBAutocomplete,
25
MDBBtn
26
},
27
setup() {
28
const basicAutocomplete = ref(['Museum', 'Party', 'Restaurant', 'Concert', 'Architecture'])
29
const locationAutocomplete = ref(['Madrid', 'Rome', 'Lisbon', 'Paris', 'London'])
30
31
const filterBasic = value => {
32
return basicAutocomplete.value.filter(item => {
33
return item.toLowerCase().startsWith(value.toLowerCase());
34
});
35
};
36
37
const filterLocation = value => {
38
return locationAutocomplete.value.filter(item => {
39
return item.toLowerCase().startsWith(value.toLowerCase());
40
});
41
};
42
43
return { filterBasic, filterLocation }
44
}
45
46
};
47
</script>
Console errors: 0