rendered

Invoked after the component is rendered.

Example

import { Component } from "combo-js";

const Example = new class extends Component {
    rendered() {
        console.log("The component was rendered.")
    }
}();

Example.mount(document.getElementById("root"));

Notes

Used to mount child components.

Last updated