mirror of https://github.com/rancher/dashboard.git
30 lines
560 B
Vue
30 lines
560 B
Vue
<script>
|
|
import { Checkbox } from '@components/Form/Checkbox';
|
|
import Question from './Question';
|
|
|
|
export default {
|
|
components: { Checkbox },
|
|
mixins: [Question]
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="row">
|
|
<div class="col span-6">
|
|
<Checkbox
|
|
:mode="mode"
|
|
:label="displayLabel"
|
|
:value="value"
|
|
:disabled="disabled"
|
|
@input="$emit('input', $event)"
|
|
/>
|
|
</div>
|
|
<div
|
|
v-if="showDescription"
|
|
class="col span-6 mt-10"
|
|
>
|
|
{{ displayDescription }}
|
|
</div>
|
|
</div>
|
|
</template>
|