forked from nikita/muzika-gromche
25 lines
420 B
Vue
25 lines
420 B
Vue
<script setup lang="ts">
|
|
import type { TimelineClipData, TimelineTrackData } from '@/lib/Timeline';
|
|
|
|
defineProps<{
|
|
track: TimelineTrackData,
|
|
clip: TimelineClipData,
|
|
width: number,
|
|
}>();
|
|
</script>
|
|
<template>
|
|
<div class="view">
|
|
Yahaha
|
|
</div>
|
|
</template>
|
|
<style scoped>
|
|
.view {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|