Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
Initialize Annotate Component. #149
Browse files Browse the repository at this point in the history
  • Loading branch information
alanneigh authored and lamby committed Oct 19, 2017
1 parent 81972cc commit b2e686d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
11 changes: 11 additions & 0 deletions interface/frontend/src/components/Annotate.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<template id="">

</template>

<script>
</script>

<style scoped>
</style>
6 changes: 5 additions & 1 deletion interface/frontend/src/views/AnnotateAndSegment.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
<template>
<nodule-list></nodule-list>


</template>

<script>
import NoduleList from '../components/NoduleList'
import Annotate from '../components/Annotate';
export default {
components: {
NoduleList
NoduleList,
Annotate
}
}
</script>

0 comments on commit b2e686d

Please sign in to comment.