aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/push-button/push-button.tag
blob: 6517591393bbc86cd15975914b3aee487a4dcda6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<push-button>
  <button onclick={ click }>Click me!</button>

  <style type="less">
    @import "./push-button";
  </style>

  <script>
    click() {
      observe('clicker').trigger('click');
    }
  </script>
</push-button>