Files
mixtape/zero.Backoffice.UI/app/editor/fields/toggle.vue
T

17 lines
345 B
Vue

<template>
<ui-toggle :on="value" @update:on="$emit('input', $event)" :disabled="config.disabled" v-bind="{ negative, onContent, offContent }" />
</template>
<script>
export default {
props: {
value: Boolean,
config: Object,
negative: Boolean,
onContent: String,
offContent: String
}
}
</script>