vite-riot-template/app/views/pages/app.riot

32 lines
918 B
Plaintext
Raw Normal View History

2024-07-30 01:31:16 +00:00
<app>
2024-09-01 15:45:46 +00:00
<section class="splash">
<router>
<div class="flex">
<a href="/">Home</a>
<img src="/assets/images/square.svg" />
<a href="/about">About</a>
</div>
</router>
<route each="{page in state.pages}" path="{page.path}">
<div is="{page.component}" {...page.props}></div>
</route>
</section>
2024-07-30 01:31:16 +00:00
<script>
2025-12-19 19:10:02 +00:00
import RiotWelcome from "./riot-welcome.riot";
import RiotAbout from "./riot-about.riot";
2024-07-30 01:31:16 +00:00
export default {
components: {
2024-09-01 15:45:46 +00:00
RiotWelcome,
RiotAbout
},
state: {
pages: [
2025-12-19 19:17:52 +00:00
{path: "/", component: "riot-welcome"},
2024-09-01 15:45:46 +00:00
{path: "/about", component: "riot-about"},
]
2024-07-30 01:31:16 +00:00
}
}
</script>
</app>