v-copy
Vue directive to copy to clipboard.Install
yarn add v-copy
CDN: UNPKG | jsDelivr (It's automatically installed as global directive
v-copy
in CDN)Usage
First register the directive globally:import Copy from 'v-copy'
Vue.use(Copy)
Or locally:
import { copy } from 'v-copy'
export default {
directives: {
copy
}
}
Then use it in template:
<template>
<button v-copy="`some text`">Copy!</button>
</template>