mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-06 20:43:03 +08:00
19 lines
300 B
Vue
19 lines
300 B
Vue
<script lang="ts" setup>
|
|
// 定义触发的自定义事件
|
|
const emit = defineEmits(['click'])
|
|
|
|
// 按钮点击
|
|
function onClick() {
|
|
emit('click')
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<IconBtn
|
|
class="absolute right-3 top-3"
|
|
@click="onClick"
|
|
>
|
|
<VIcon icon="mdi-close" />
|
|
</IconBtn>
|
|
</template>
|