codemix / url-route

Web component providing URL routing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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>

About

Web component providing URL routing


Languages

Language:JavaScript 100.0%