A "copy to clipboard" module for Nuxt.js using vue-clipboard2
- Add
nuxt-clipboard2
dependency using yarn or npm to your project - Add
nuxt-clipboard2
tomodules
section ofnuxt.config.js
{
modules: [
'nuxt-clipboard2',
]
}
You can use $copyText in almost any context using app.$copyText
or this.$copyText
(Including store actions).
See vue-clipboard2 official docs for more usage information.
export default {
methods: {
async copySomething(text) {
try {
await this.$copyText(text);
} catch (e) {
console.error(e);
}
},
},
};
Copyright (c) webcore-it