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.

26 lines
490 B

  1. <template lang="pug">
  2. extends ./download.pug
  3. block select-format-area
  4. label.radio
  5. input(
  6. type="radio"
  7. name="format"
  8. value="json"
  9. v-bind:checked="format == 'json'"
  10. v-model="format"
  11. )
  12. | JSONL
  13. block example-format-area
  14. pre.code-block(v-show="format == 'json'")
  15. code.json
  16. include ./examples/download_sequence_labeling.jsonl
  17. | ...
  18. </template>
  19. <script>
  20. import { uploadMixin } from './mixin';
  21. export default uploadMixin;
  22. </script>