0👍
bind some condition to the attribute disabled
on the button:
<script setup>
import { ref } from 'vue'
const colors = ref<[] | undefined>(undefined)
</script>
<template>
<button :disabled="colors != undefined"></button>
</template>
- [Vuejs]-Vuestic-ui VaCheckbox Component is missing template or render function
- [Vuejs]-Beufy text input can not set value
Source:stackexchange.com