vite-riot-template/src/components/hello-riot/hello-riot.riot

54 lines
1.5 KiB
Plaintext
Raw Normal View History

2022-07-18 03:50:39 +00:00
<hello-riot>
<div class="splash">
<img src="/assets/images/square.svg">
<h1>Welcome to Your Riot.js Application</h1>
<p>
Start your development with
2022-09-09 03:02:22 +00:00
<a>Riot</a>, a component-based ui library, running on the
<a>Vite</a> front-end tooling.
2022-07-18 03:50:39 +00:00
</p>
<h2>Getting Started</h2>
<p>
2022-07-29 04:22:17 +00:00
This page is found at <br>
<code>src/components/hello-riot/hello-riot.riot</code> <br>
2022-07-29 04:28:54 +00:00
and is mounted via object registry at
2022-07-29 04:22:17 +00:00
<code>src/index.js</code>.
2022-07-18 03:50:39 +00:00
<p>
2022-07-29 04:14:19 +00:00
<em>many mounting strategies exist, this is but <strong>one</strong></em>
2022-07-18 03:50:39 +00:00
</p>
</p>
<h2>Documentation</h2>
2022-07-29 04:14:19 +00:00
<div class="flex">
2022-07-18 03:50:39 +00:00
<span>
<a href="https://riot.js.org/documentation/">Riot </a>
<br>
<code>{props.version}</code>
</span>
<em>or</em>
<span>
<a href="https://vitejs.dev/guide/">Vite</a>
<br>
<code>v3.x</code>
</span>
</div>
<h2>Ecosystem</h2>
2022-07-29 04:14:19 +00:00
<div class="flex">
2022-07-18 03:50:39 +00:00
<a href="https://github.com/riot/examples">Examples</a>
2022-07-29 03:21:53 +00:00
<a href="https://github.com/riot/route">Router</a>
2022-07-18 03:50:39 +00:00
<a href="https://github.com/riot/riot/blob/main/AWESOME.md">Community</a>
<a href="https://github.com/riot/riot">Github</a>
</div>
</div>
<script>
export default {
}
</script>
</hello-riot>