Skip to content

Latest commit

 

History

History
 
 

omi-tap

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

omi-tap

Support tap event in your Omi project.


Install

npm install omi-tap

Usage

import { render, WeElement, tag } from "omi"
import "omi-tap"

@tag("my-app")
class MyApp extends WeElement {
  onTap = () => {
    console.log('tap')
  }

  render() {
    return (
      <omi-tap onTap={this.onTap} >
        <div>Tap Me!</div>
      </omi-tap>
    )
  }
}

render(<my-app />, "body");

License

This content is released under the MIT License.