-
Matthieu Fesselier authoredMatthieu Fesselier authored
Solid-Router.rst 4.89 KiB
solid-router
This is a series of web component respecting both the web components standards and the Linked Data Platform convention. They are aimed at enabling anyone with little development skills to create their own web application by placing these components in an HTML file.
An full app example can be found in index.html:
Initialization
You first need to load the webcomponents polyfill for the browsers that have not implemented them yet, and import the components you want to use in your HTML file:
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.0.20/webcomponents-loader.js"></script>
<script type="module" src="https://unpkg.com/@startinblox/router@latest"></script>
Then you can use the new tags in your markup, for instance:
<solid-router>
. More details on each component in the following
section.