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.

38 lines
628 B

  1. <template>
  2. <base-text-area>
  3. <template #title>
  4. <multi-class-classification
  5. :labels="items"
  6. />
  7. </template>
  8. <template #content>
  9. <div class="title">
  10. Text area
  11. </div>
  12. </template>
  13. </base-text-area>
  14. </template>
  15. <script>
  16. import BaseTextArea from '@/components/molecules/BaseTextArea'
  17. import MultiClassClassification from '@/components/organisms/MultiClassClassification'
  18. export default {
  19. components: {
  20. BaseTextArea,
  21. MultiClassClassification
  22. },
  23. computed: {
  24. items() {
  25. return ['foo', 'bar']
  26. }
  27. },
  28. created() {
  29. },
  30. methods: {
  31. }
  32. }
  33. </script>