Skip to content

lekhang2512/vue-directive-copy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A simple copy text directive for Vuejs NPM Package

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published