71 lines
1.7 KiB
Vue
71 lines
1.7 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>The <i>handle</i> slot is available to display custom content.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center gap-4">
|
|
<ToggleSwitch v-model="checked">
|
|
<template #handle="{ checked }">
|
|
<i :class="['!text-xs pi', { 'pi-check': checked, 'pi-times': !checked }]" />
|
|
</template>
|
|
</ToggleSwitch>
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
checked: false,
|
|
code: {
|
|
basic: `
|
|
<ToggleSwitch v-model="checked">
|
|
<template #handle="{ checked }">
|
|
<i :class="['!text-xs pi', { 'pi-check': checked, 'pi-times': !checked }]" />
|
|
</template>
|
|
</ToggleSwitch>
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<ToggleSwitch v-model="checked">
|
|
<template #handle="{ checked }">
|
|
<i :class="['!text-xs pi', { 'pi-check': checked, 'pi-times': !checked }]" />
|
|
</template>
|
|
</ToggleSwitch>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
checked: false
|
|
}
|
|
}
|
|
};
|
|
<\/script>
|
|
`,
|
|
composition: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<ToggleSwitch v-model="checked">
|
|
<template #handle="{ checked }">
|
|
<i :class="['!text-xs pi', { 'pi-check': checked, 'pi-times': !checked }]" />
|
|
</template>
|
|
</ToggleSwitch>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
|
|
const checked = ref(false);
|
|
<\/script>
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|