mirror of
https://github.com/ZiuChen/ClipboardManager.git
synced 2025-09-11 21:23:47 +08:00
17 lines
333 B
Vue
17 lines
333 B
Vue
<template>
|
|
<div class="clip-float-btn" @click="handleBtnClick">
|
|
<div>{{ props.icon }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const emit = defineEmits(['onBtnClick'])
|
|
const handleBtnClick = () => emit('onBtnClick')
|
|
const props = defineProps({
|
|
icon: {
|
|
type: String,
|
|
default: '🌎'
|
|
}
|
|
})
|
|
</script>
|