xxxxxxxxxx
1
<template>
2
<div class="m-4">
3
<MDBInput :label="label" v-model="input1" />
4
</div>
5
</template>
1
1
xxxxxxxxxx
1
<script setup lang="ts">
2
import { ref, onMounted } from 'vue';
3
import { MDBInput } from 'mdb-vue-ui-kit';
4
5
const input1 = ref('');
6
const label = ref('');
7
8
onMounted(() => {
9
// Change the label automatically after component is mounted
10
label.value = 'New label long';
11
});
12
</script>
Console errors: 0