hminghe/weex-amui

am-button的@click在h5下无效,只能是@click.native

Closed this issue · 2 comments

<template>
  <div>
    <am-button
      @click="handleClick"
      text="确定"
      type="primary"/>
  </div>
</template>

<script>
  import { AmButton } from 'weex-amui';

  export default {
    components: { AmButton },
    methods: {
      handleClick () {
        // enter your code
        console.log('here')
      }
    }
  };
</script>

看文档有说明
请看一下使用前的第三点

多谢!好使了!这个我看你push官方了,那边为啥不合并哦!