Skip to Content
Menu
This question has been flagged
1 Reply
2282 Views
/** @odoo-module */
import { Component } from "@odoo/owl";
import { registry } from "@web/core/registry"

export class YourComponent extends Component {
static template = "your_module.YourComponent";
static props = {};
}

registry.category("public_components").add("your_module.YourComponent", YourComponent);


Avatar
Discard
Best Answer

Hi,

There is no error the code you mentioned, if the error still exists try clearing your browser cache and restarting the Odoo server. Ensure that your module is properly declared in the __manifest__.py file and that it includes any necessary dependencies.

Hope it helps.

Avatar
Discard
Related Posts Replies Views Activity
1
Jul 24
6968
3
Jul 25
2199
1
Jun 25
2816
2
May 25
2175
1
May 25
1342