We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d0b6c1 commit cd2cb83Copy full SHA for cd2cb83
spring-boot-admin-server-ui/src/main/frontend/components/sba-checkbox.vue
@@ -5,6 +5,7 @@
5
:checked="modelValue"
6
type="checkbox"
7
class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded"
8
+ :name="name"
9
@change="$emit('update:modelValue', $event.target.checked)"
10
/>
11
<label :for="id" class="ml-2 font-medium text-gray-700" v-text="label" />
@@ -14,6 +15,11 @@
14
15
<script>
16
export default {
17
props: {
18
+ name: {
19
+ type: String,
20
+ required: false,
21
+ default: null,
22
+ },
23
modelValue: {
24
type: Boolean,
25
required: true,
0 commit comments