标签: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>
父组件:
标签:javascrip rev trigger png this ima IV tap 图片
原文地址:https://www.cnblogs.com/smzd/p/9223830.html