nuxt-clipboard2

0.2.1 • Public • Published

nuxt-clipboard2

A "copy to clipboard" module for Nuxt.js using vue-clipboard2

Setup

  • Add nuxt-clipboard2 dependency using yarn or npm to your project
  • Add nuxt-clipboard2 to modules section of nuxt.config.js
{
  modules: [
   'nuxt-clipboard2',
  ]
}

Usage

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);
      }
    },
  },
};

License

MIT License

Copyright (c) webcore-it

Package Sidebar

Install

npm i nuxt-clipboard2

Weekly Downloads

2,308

Version

0.2.1

License

MIT

Unpacked Size

2.76 kB

Total Files

5

Last publish

Collaborators

  • webcore-it