mirror of
https://github.com/unraid/api.git
synced 2026-01-29 03:58:54 -06:00
10 lines
203 B
Vue
10 lines
203 B
Vue
<script setup lang="ts">
|
|
defineEmits(['click'])
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative flex items-center justify-end h-full">
|
|
<button @click="$emit('click')">Open</button>
|
|
</div>
|
|
</template>
|