Skip to content

Latest commit

 

History

History
82 lines (65 loc) · 1.51 KB

README.md

File metadata and controls

82 lines (65 loc) · 1.51 KB

vue-directive-copy

A simple copy text directive for Vuejs NPM Package

Demo!

enter image description here

Development (NPM / Yarn)

npm run dev
yarn dev

Install

NPM / Yarn

Install the package:

npm install vue-directive-copy
yarn add vue-directive-copy

Then import it in your project

import ClickCopy from 'vue-directive-copy'

Vue.use(ClickCopy)

Single component

import { copy } from 'vue-directive-copy/src/copy'
import 'vue-directive-copy/src/style.css'

export default {
  directives: {
    copy
  }
}

Browser global

<script src="path/to/vue.js"></script>
<script src="path/to/dist/vue-directive-copy.js"></script>

Usage

You can simply view App.vue to see how to use vue-upload-multiple-image

How to use:

<span v-copy="'Le Khang'">Le Khang</span>

Example

<template>
  <span v-copy="'Le Khang'">Le Khang</span>
</template>

<script>
import { copy } from 'vue-directive-copy'
export default {
  name: 'app',
  data () {
    return {
    }
  },
  directives: {
    copy
  }
}
</script>

References