vite-riot-template/app/boot.js

39 lines
814 B
JavaScript
Raw Normal View History

2024-07-30 01:31:16 +00:00
import * as riot from "riot";
2024-09-01 15:45:46 +00:00
import {Route, Router} from "@riotjs/route";
2024-07-30 01:31:16 +00:00
import app from "./components/app.riot";
2025-03-22 22:13:08 +00:00
const boot = {
2024-09-01 14:44:20 +00:00
// start-up actions here
2025-03-22 22:13:08 +00:00
start() {
2024-09-01 14:44:20 +00:00
// install plugins
this.plugins();
2024-07-30 01:31:16 +00:00
// mount components
this.mount();
},
2024-09-01 14:44:20 +00:00
// extend functionality
plugins() {
riot.install((component) => {
// add your own features here
2024-09-01 15:45:46 +00:00
component.version = {
riot: "9.x.x",
2025-03-22 22:13:08 +00:00
vite: "6.x.x",
app: "4.0.0"
2024-09-01 15:45:46 +00:00
};
2024-09-01 14:44:20 +00:00
});
},
2024-07-30 01:31:16 +00:00
mount() {
// register core app component
riot.register("app", app);
2024-09-01 15:45:46 +00:00
riot.register("router", Router);
riot.register("route", Route);
2024-07-30 01:31:16 +00:00
// mount main app
riot.mount("app");
}
}
2025-03-22 22:13:08 +00:00
boot.start();