子组件
<template>
<view class="company-head">
点我
</view>
</template>
<script>
export default {
inheritAttrs: false // 这行注释掉就可以监听点击事件
}
</script>
页面
<template>
<view>
<company-head @click.native="showToast"></company-head>
</view>
</template>
<script>
import CompanyHead from '../components/CompanyHead.vue'
export default {
components: {
CompanyHead
},
methods:{
showToast(money) {
uni.showToast({
icon: 'none',
title: '监听到点击',
});
}
}
}
0 个回复