xxxxxxxxxx
1
<template>
2
<section class="intro">
3
<div class="bg-image vh-100" style="
4
background-image: url(https://mdbootstrap.com/img/Photos/new-templates/search-box/img2.jpg);
5
">
6
<div class="mask d-flex align-items-center h-100" style="background-color: rgba(61, 162, 195, 0.1);">
7
<MDBContainer>
8
<MDBCard class="mask-custom p-4">
9
<MDBCardBody>
10
<p class="h1 font-weight-bold mb-4 text-white">Discover the Amazing City</p>
11
<MDBRow class="justify-content-center">
12
<MDBCol md="6" class="mb-3 mb-md-0">
13
<div id="basic" class="form-outline form-white">
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 form-white">
19
<MDBAutocomplete :filter="filterLocation" label="Location" size="lg" />
20
</div>
21
</MDBCol>
22
<MDBCol md="2">
23
<MDBBtn size="lg" color="info" 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
html,
9
body,
10
.intro {
11
height: 100%;
12
}
13
14
.mask-custom {
15
background: rgba(24, 24, 16, .2);
16
border-radius: 2em;
17
backdrop-filter: blur(15px);
18
border: 2px solid rgba(255, 255, 255, 0.05);
19
background-clip: padding-box;
20
box-shadow: 10px 10px 10px rgba(46, 54, 68, 0.03);
21
}
22
</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