forked from nikita/muzika-gromche
27 lines
417 B
Vue
27 lines
417 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>
|