url-route

10

Web component providing URL routing

@see github.com/codemix/url-route

phpnode

url-route

See the component page for more information.

Usage

<url-route pattern="/pages/<page>">
  <template>
    <h1>Showing the {{page}} page!</h1>
  </template>
</url-route>
<url-route pattern="/things/<num:\d+>">
  <template>
    <h1>Showing thing #{{num}}</h1>
  </template>
</url-route>
<url-route pattern="#info">
  <template>
    <div class="alert alert-info">
      This is an info panel
    </div>
  </template>
</url-route>