diff --git a/src/components/NcActionCheckbox/NcActionCheckbox.vue b/src/components/NcActionCheckbox/NcActionCheckbox.vue
index bc4c8cd98b..0d8051e01d 100644
--- a/src/components/NcActionCheckbox/NcActionCheckbox.vue
+++ b/src/components/NcActionCheckbox/NcActionCheckbox.vue
@@ -9,10 +9,10 @@ This component is made to be used inside of the [NcActions](#NcActions) componen
```vue
- First choice
- Second choice (v-model)
- Third choice (checked)
- Fourth choice (disabled)
+ First choice
+ Second choice
+ Third choice (checked)
+ Second choice (disabled)
@@ -20,15 +20,13 @@ This component is made to be used inside of the [NcActions](#NcActions) componen
export default {
data() {
return {
- checkboxValue: false,
+ checkboxValue: true,
}
},
methods: {
- alert(message) {
- alert(message)
- }
- }
+ log: console.log,
+ },
}
```
@@ -36,27 +34,28 @@ export default {