forked from Mirrors/swingmusic-webclient
12 lines
166 B
Vue
12 lines
166 B
Vue
<script setup lang="ts">
|
|
import { onMounted } from "vue";
|
|
|
|
const props = defineProps<{
|
|
action: () => void;
|
|
}>();
|
|
|
|
onMounted(() => {
|
|
props.action();
|
|
});
|
|
</script>
|