挂载一个Owl应用程序是通过使用mount方法来完成的。如果您使用的是 iife 版本,您可以通过`owl.mount`使用它,如果您使用的是模块系统,您可以直接从 `owl` 导入它。
mount方法的使用方式举例如下:
const mount = { owl }; // 如果owl是可用的对象
const env = { ... };
const app = await mount(MyComponent, { target: document.body, env });
或者像下面这样,看起来更清晰:
const config = {
env: ...,
props: ...,
target: document.body,
position: "self",
};
const app = await mount(App, config);
初始化应用程序的常见方法是首先设置一个环境,然后调用 mount 方法。
mount方法有两个参数: