码迷,mamicode.com
首页 > 其他好文 > 详细

touchWX 自定义组件以及传值

时间:2018-06-25 15:17:30      阅读:883      评论:0      收藏:0      [点我收藏+]

标签:javascrip   rev   trigger   png   this   ima   IV   tap   图片   

技术分享图片

创建如图文件

index.wxc:

<template>
  <view class="wx-test" bindtap="handleTap">
    {{ msg }}{{dataIndex}}
  </view>
</template>
<script>
  export default {
    properties: {
      dataIndex: {
        type: String,
        value: ‘default value‘,
      }
    },
    data: {
      msg: ‘This is a test msg!‘
    },
    methods: {
      handleTap() {
        var a=123
        this.triggerEvent(‘myclick‘,a);
      }
    }
  }
</script>
<style lang="less">
  .wx-test {
    color: #f00;
  }
</style>

  父组件:

技术分享图片

技术分享图片

 

touchWX 自定义组件以及传值

标签:javascrip   rev   trigger   png   this   ima   IV   tap   图片   

原文地址:https://www.cnblogs.com/smzd/p/9223830.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!