From b3c2f7fd2e641c4a529882d56cd54d671d2837f3 Mon Sep 17 00:00:00 2001 From: alvinnuro <97007827+alvinnuro@users.noreply.github.com> Date: Wed, 7 Aug 2024 13:47:52 +0700 Subject: [PATCH] [IMP] add mount in main.js --- doc/learning/quick_start.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/learning/quick_start.md b/doc/learning/quick_start.md index 05d46572b..d6b64fb9f 100644 --- a/doc/learning/quick_start.md +++ b/doc/learning/quick_start.md @@ -130,6 +130,7 @@ export class Root extends Component { // main.js --------------------------------------------------------------------- import { Root } from "./root.js"; +const { Component, mount, xml } = owl; mount(Root, document.body); ```