45fef9b431
* perf[navbar]: set langSelect to component && refine errorLog component
* feat[login]:add 18n to login form
* fix[pagination]: fixed when selected page-sizes
* perf[i18n]:dashboard document svg permission
* perf[charts]: perf effect
* perf[i18n]:excel && zip
* perf[i18n]: table && errorLog && theme
* perf[i18n]: components
* perf[i18n]: direct use $t
* perf[i18n]: complex-table
* update README.md
* update README.md 📘
* perf[i18n]: refine code comments
45 lines
1.3 KiB
Vue
45 lines
1.3 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-tabs v-model="activeName">
|
|
<el-tab-pane label="use clipboard directly" name="directly">
|
|
<el-input v-model="inputData" placeholder="Please input" style='width:400px;'></el-input>
|
|
<el-button type="primary" icon="document" @click='handleCopy(inputData,$event)'>copy</el-button>
|
|
</el-tab-pane>
|
|
<el-tab-pane label="use clipboard by v-directive" name="v-directive">
|
|
<el-input v-model="inputData" placeholder="Please input" style='width:400px;'></el-input>
|
|
<el-button type="primary" icon="document" v-clipboard:copy='inputData' v-clipboard:success='clipboardSuccess'>copy</el-button>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import clip from '@/utils/clipboard' // use clipboard directly
|
|
import clipboard from '@/directive/clipboard/index.js' // use clipboard by v-directive
|
|
|
|
export default {
|
|
name: 'clipboardDemo',
|
|
directives: {
|
|
clipboard
|
|
},
|
|
data() {
|
|
return {
|
|
activeName: 'directly',
|
|
inputData: 'https://github.com/PanJiaChen/vue-element-admin'
|
|
}
|
|
},
|
|
methods: {
|
|
handleCopy(text, event) {
|
|
clip(text, event)
|
|
},
|
|
clipboardSuccess() {
|
|
this.$message({
|
|
message: '复制成功',
|
|
type: 'success',
|
|
duration: 1500
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|