VeroniTasingolir's avatar

How to disable button in vuejs

I want to make the button disabled during the form filling when all the inputs are filled the button will be enabled using vuejs and on laravel framework

I tried achive that by simply making https://omegle.club the button disabled in the

Next but i didn't know how https://omegle.ws to do it in vuejs

0 likes
1 reply
crossfield's avatar

Create in data() a boolean variable and handle disabled attribute by the value of this variable.

<template>
...
<button :disabled="isAllEnabled">Click me!</button>
...
</template>

<script>
...
data() {
		return {
				...
				isAllEnabled: false
				...
		}
}
...
</script>

Please or to participate in this conversation.