Answers for "how lock the button click in vue"

1

how lock the button click in vue

<template>
  <div class="container">
     <button :disabled="isActive">Subscribe</button>  </div>
</template>

<script>
export default {
  data() {
    return {
      isActive: true,    };
  },
}
Posted by: Guest on October-07-2021

Browse Popular Code Answers by Language