Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: Anwarul Islam <anwaarulislaam@gmail.com>
16 lines
283 B
Vue
16 lines
283 B
Vue
<template>
|
|
<Story title="Checkbox">
|
|
<Variant title="Single">
|
|
<HoppSmartCheckbox :on="on" />
|
|
</Variant>
|
|
</Story>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { HoppSmartCheckbox } from "../components/smart"
|
|
|
|
import { ref } from "vue"
|
|
|
|
const on = ref(true)
|
|
</script>
|