xxxxxxxxxx
1
<template>
2
<MDBSelect v-model:options="options1" v-model:selected="selected1" />
3
</template>
xxxxxxxxxx
1
<style>
2
#app {
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
}
5
</style>
xxxxxxxxxx
1
<script>
2
import { MDBSelect } from "mdb-vue-ui-kit";
3
import { ref } from "vue";
4
5
export default {
6
components: {
7
MDBSelect
8
},
9
setup() {
10
const listOfOptions = [
11
{ text: "One", value: 1 },
12
{ text: "Two", value: 2 },
13
{ text: "Three", value: 3 },
14
{ text: "Four", value: 4 },
15
{ text: "Five", value: 5 },
16
{ text: "Six", value: 6 },
17
{ text: "Seven", value: 7 },
18
{ text: "Eight", value: 8 }
19
]
20
21
const getOptionList = (selectedId) => {
22
const newList = Array.from(listOfOptions);
23
newList[selectedId].selected = true;
24
25
return newList
26
27
}
28
29
30
const options1 = ref(getOptionList(2));
31
const selected1 = ref("");
32
33
return {
34
options1,
35
selected1
36
};
37
}
38
};
39
</script>
Console errors: 0