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

53 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-07-18 03:50:39 +00:00
<hello-riot>
<div class="splash">
2023-03-02 19:29:00 +00:00
<img src="/assets/images/square.svg" />
2022-07-18 03:50:39 +00:00
<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>
2023-03-02 19:29:00 +00:00
This page is found at <br/>
<code>src/components/hello-riot.riot</code>
2022-07-18 03:50:39 +00:00
<p>
2023-03-02 19:29:00 +00:00
and is auto-registered via <br/>
2023-03-02 19:32:41 +00:00
<code>src/app.js</code>
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>
2023-03-02 19:29:00 +00:00
<br/>
2022-07-18 03:50:39 +00:00
<code>{props.version}</code>
</span>
<em>or</em>
<span>
<a href="https://vitejs.dev/guide/">Vite</a>
2023-03-02 19:29:00 +00:00
<br/>
2022-12-18 21:28:43 +00:00
<code>v4.x</code>
2022-07-18 03:50:39 +00:00
</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>