vite-riot-template/src/main.js

39 lines
812 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";
const main = {
2024-09-01 14:44:20 +00:00
// start-up actions here
2024-07-30 01:31:16 +00:00
init() {
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",
vite: "5.x.x",
app: "3.1.0"
};
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");
}
}
main.init();