This commit is contained in:
2025-08-19 15:05:55 +07:00
parent 70ae66ee4b
commit f78dc34aee
161 changed files with 13703 additions and 0 deletions
@@ -0,0 +1,18 @@
import { Component } from "@odoo/owl";
import { standardViewProps } from "@web/views/standard_view_props";
import { Layout } from "@web/search/layout";
export class HelloController extends Component {
static template = `cheat_web.HelloView`;
static props = {
...standardViewProps,
aValue: { type: String }
};
static components = { Layout };
setup() {
console.log("Hello Controller - this: ", this);
console.log("Hello Controller - props: ", this.props);
}
}