<template>
<div style="margin-top: 100px;">
<span class="text" @click="click">Hello</span>
</div>
</template>
<style scoped>
.text{
font-size: 50px;
}
</style>
<script>
import wx from './../../common/wx'
export default {
data:function () {
return {
};
},
mixins: [require('./../../common/publish').publish],
methods:{
},
created:function () {
//console.log("index created");
},
methods:{
click(){
wx.setClipboardData({data:"hello"})
}
}
}
</script>