crossfield3 years agoLevel 1ReplyReport SpamCreate 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> Like Reply