1.0.3 • Published 8 years ago
clopy v1.0.3
Clopy!
Simple copy-to-clipboard button.
Installation and Usage
Install the package
yarn add clopy
// or
npm install clopy --saveImport the clopy element:
import Vue from 'vue';
import { Clopy } from 'clopy';
Vue.component('clopy', Clopy);
// Alternatively
import Clopy from 'clopy';
Vue.use(Clopy);Add the element to the HTLM
<clopy input=".some-input">- Make sure that the
inputparameter is pointed to the input element you wish to copy from. - Click the
clopyicon/button and copy the content of the input!
The input which is to be copied could be any element with either a value attribute or a innerText, if both, value precedes the innerText.
Customizing
By default the clopy button has the clopy-button class, it can be changed by setting another class via the exposed classes attribute, which will then ignore the default class.
If the default icon does not suit you, just set the use-icon attribute to false (boolean, so bind it with :use-icon) and it will be ignored.
Credits
Font-awesome (default icon).
Bootstrap (default button class, slightly modified).
License
MIT