社交电商公众号首页简易页面测试

2020-07-17 11:47:10 阅读:6 编辑
<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>