web-controller

0.0.3 • Public • Published

web-component

Getting started

// welcome-message.html
 
<template>
 
  Hello <span>{this.props.name}!</span>
 
</template>
<script>
 
  new WebComponent('welcome-message', {
 
    componentDidMount() {
      this.setProps({
        name: 'John Doe'
      })
    }
  })
 
</script> 
<style>
 
  span {
    font-weight: bold;
  }
 
</style> 
 
// index.html
 
<link rel="import" href="welcome-message.html">
<welcome-message></welcome-message>
 

Readme

Keywords

none

Package Sidebar

Install

npm i web-controller

Weekly Downloads

1

Version

0.0.3

License

MIT

Last publish

Collaborators

  • johano