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

15 lines
277 B
Plaintext
Raw Normal View History

2024-07-30 01:31:16 +00:00
<app>
<div>
<hello-riot version="v9.x"></hello-riot>
</div>
<script>
import helloRiot from "./hello-riot.riot";
export default {
components: {
helloRiot
}
}
</script>
</app>