16 lines
328 B
Vue
16 lines
328 B
Vue
<template>
|
|
<ui-toggle :value="value" @input="$emit('input', $event)" v-bind="{ disabled, negative, onContent, offContent }" />
|
|
</template>
|
|
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: Boolean,
|
|
disabled: Boolean,
|
|
negative: Boolean,
|
|
onContent: String,
|
|
offContent: String
|
|
}
|
|
}
|
|
</script> |