mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
10 lines
133 B
Vue
10 lines
133 B
Vue
<template>
|
|
<div class="title">{{ text }}</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
text: string;
|
|
}>();
|
|
</script>
|