You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
354 B

  1. <template>
  2. <v-checkbox
  3. v-bind="$attrs"
  4. :value="value"
  5. :label="$t('overview.randomizeDocOrder')"
  6. @change="$emit('input', $event === true)"
  7. />
  8. </template>
  9. <script lang="ts">
  10. import Vue from 'vue'
  11. export default Vue.extend({
  12. props: {
  13. value: {
  14. type: Boolean,
  15. default: false,
  16. required: true
  17. }
  18. }
  19. })
  20. </script>