vite-riot-template/src/main.js

32 lines
588 B
JavaScript
Raw Normal View History

2024-07-30 01:31:16 +00:00
import * as riot from "riot";
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
component.version = "3.0.0";
});
},
2024-07-30 01:31:16 +00:00
mount() {
// register core app component
riot.register("app", app);
// mount main app
riot.mount("app");
}
}
main.init();