vite-riot-template/src/main.js

22 lines
356 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 = {
init() {
// start-up actions here
// mount components
this.mount();
},
mount() {
// register core app component
riot.register("app", app);
// mount main app
riot.mount("app");
}
}
main.init();