Skip to content

Commit

Permalink
🎨 organize components
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidZhang73 committed Feb 26, 2022
1 parent a3b7767 commit 77215dd
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 12 deletions.
File renamed without changes.
10 changes: 5 additions & 5 deletions src/pages/annotation/Annotation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
</template>

<script setup>
import ActionTable from '~/pages/annotation/components/ActionTable.vue'
import CanvasPanel from '~/pages/annotation/components/CanvasPanel.vue'
import ControlPanel from '~/pages/annotation/components/ControlPanel.vue'
import ActionTable from '~/pages/annotation/ActionTable.vue'
import CanvasPanel from '~/pages/annotation/CanvasPanel.vue'
import ControlPanel from '~/pages/annotation/ControlPanel.vue'
import { useAnnotationStore } from '~/store/annotation.js'
import { useConfigurationStore } from '~/store/configuration.js'
import { useMainStore } from '~/store/index.js'
import { usePreferenceStore } from '~/store/preference.js'
import AnnotationSkeleton from './components/AnnotationSkeleton.vue'
import KeyframePanel from './components/KeyframePanel.vue'
import AnnotationSkeleton from './AnnotationSkeleton.vue'
import KeyframePanel from './KeyframePanel.vue'
const annotationStore = useAnnotationStore()
const configurationStore = useConfigurationStore()
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ import { computed, nextTick, onMounted, onUnmounted, ref, watch } from 'vue'
import { ObjectAnnotation, RegionAnnotation, SkeletonAnnotation } from '~/libs/annotationlib.js'
import utils from '~/libs/utils.js'
import FilmStrip from '~/pages/annotation/components/FilmStrip.vue'
import ObjectTable from '~/pages/annotation/components/ObjectTable.vue'
import RegionTable from '~/pages/annotation/components/RegionTable.vue'
import SkeletonTable from '~/pages/annotation/components/SkeletonTable.vue'
import ObjectTable from '~/pages/annotation/ObjectTable.vue'
import RegionTable from '~/pages/annotation/RegionTable.vue'
import SkeletonTable from '~/pages/annotation/SkeletonTable.vue'
import { useAnnotationStore } from '~/store/annotation.js'
import { useConfigurationStore } from '~/store/configuration.js'
import { useMainStore } from '~/store/index.js'
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/pages/configuration/Configuration.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
import { exportFile } from 'quasar'
import { useConfigurationStore } from '~/store/configuration.js'
import utils from '../../libs/utils.js'
import ActionLabelTable from './components/ActionLabelTable.vue'
import ObjectLabelTable from './components/ObjectLabelTable.vue'
import SkeletonTypeTable from './components/SkeletonTypeTable.vue'
import ActionLabelTable from './ActionLabelTable.vue'
import ObjectLabelTable from './ObjectLabelTable.vue'
import SkeletonTypeTable from './SkeletonTypeTable.vue'
const configurationStore = useConfigurationStore()
const handleLoad = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ import { computed, nextTick } from 'vue'
import utils from '~/libs/utils.js'
import TableBase from '~/pages/configuration/components/TableBase.vue'
import { useConfigurationStore } from '~/store/configuration.js'
import SkeletonPreview from './SkeletonPreview.vue'
import SkeletonPreview from './components/SkeletonPreview.vue'
// Skeleton
const columnList = [
Expand Down

0 comments on commit 77215dd

Please sign in to comment.