move BoundingBox def to SVGContent.vue

master
Tomáš Mládek 2021-01-12 18:06:53 +01:00
parent 8bbcd96050
commit 7361147f85
2 changed files with 12 additions and 9 deletions

View File

@ -6,6 +6,7 @@
<script lang="ts">
import {defineComponent, PropType, ref, watch} from "vue";
import {BoundingBox} from "@/components/SVGContent.vue";
export default defineComponent({
name: "AudioArea",
@ -64,14 +65,6 @@ export interface AudioAreaDef {
src: string
}
export interface BoundingBox {
x: number,
y: number,
w: number,
h: number,
z: number
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->

View File

@ -30,10 +30,20 @@
import {defineComponent, onMounted, reactive, ref} from "vue";
import createPanZoom, {PanZoom} from "panzoom";
import VideoScroll, {VideoScrollDef, VideoScrollDirection} from "@/components/VideoScroll.vue";
import AudioArea, {AudioAreaDef, BoundingBox} from "@/components/AudioArea.vue";
import AudioArea, {AudioAreaDef} from "@/components/AudioArea.vue";
import Stats from "stats.js";
import {rotate} from "@/utils";
export interface BoundingBox {
x: number,
y: number,
w: number,
h: number,
z: number
}
export default defineComponent({
name: "SVGContent",
components: {AudioArea, VideoScroll},