SpeciesFileGroup/taxonworks

View on GitHub
app/javascript/vue/tasks/nomenclature/stats/components/headerBar.vue

Summary

Maintainability
Test Coverage
<template>
  <div class="panel content separate-bottom">
    <div class="flex-separate middle">
      <span>
        JSON Request: {{ jsonUrl }}
      </span>
    </div>
  </div>
</template>

<script>

export default {
  props: {
    jsonUrl: {
      type: String,
      default: ''
    }
  }
}

</script>