25 lines
418 B
Vue
25 lines
418 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: "auth"
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<UButton class="controlButton" disabled>
|
|
Start
|
|
</UButton>
|
|
<UButton class="controlButton" disabled>
|
|
Stop
|
|
</UButton>
|
|
<UButton class="controlButton" disabled>
|
|
Pause
|
|
</UButton>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.controlButton {
|
|
margin-right: 1em;
|
|
}
|
|
</style> |