Skip to content

Instantly share code, notes, and snippets.

View chstappert's full-sized avatar

Christopher H. Stappert chstappert

View GitHub Profile
@chstappert
chstappert / MultipleClipboard.vue
Last active August 3, 2025 12:26
Multiple Clipboard on inline composable with Vueuse clipboard function
<script setup lang="ts">
const useMultipleClipboard = () => {
const clipboards = reactive({
shield: useClipboard(),
markdown: useClipboard(),
html: useClipboard()
})
const copyToClipboard = (type: keyof typeof clipboards, content: string) => {