Components
vue
Checkbox

Checkbox

---
import Checkbox from "@technologyadvice/components/ui/checkbox/Checkbox.vue"
---

<Checkbox client:load id="test0" />

States

Disabled

---
import Checkbox from "@technologyadvice/components/ui/checkbox/Checkbox.vue"
---

<Checkbox
  id="test1"
  label="This is a label"
  sublabel="This is a sublabel"
  disabled
  client:load
/>

With Label

---
import Checkbox from "@technologyadvice/components/ui/checkbox/Checkbox.vue"
---

<Checkbox
  id="test2"
  label="This is a label"
  sublabel="This is a sublabel"
  client:load
/>

Indeterminate

---
import Checkbox from "@technologyadvice/components/ui/checkbox/Checkbox.vue"
---

<Checkbox id="test3" indeterminate client:load />