【发布时间】:2020-09-01 08:42:39
【问题描述】:
我已经使用 typescript run 创建了应用程序:
ojet create web-app-navbar --template=navbar --typescript
然后我创建了 web 组件运行:
ojet create components demo-card --typescript
ojet cli 已成功创建演示卡组件。 我想在 about 页面中添加演示卡组件,并且添加了 html 标签:
// IT IS about.ts
class AboutViewModel {
constructor() {
}
/**
* Optional ViewModel method invoked after the View is inserted into the
* document DOM. The application can put logic that requires the DOM being
* attached here.
* This method might be called multiple times - after the View is created
* and inserted into the DOM and after the View is reconnected
* after being disconnected.
*/
connected(): void {
// implement if needed
}
/**
* Optional ViewModel method invoked after the View is disconnected from the DOM.
*/
disconnected(): void {
// implement if needed
}
/**
* Optional ViewModel method invoked after transition to the new View is complete.
* That includes any possible animation between the old and the new View.
*/
transitionCompleted(): void {
// implement if needed
}
}
export default AboutViewModel;
<!--
Copyright (c) 2014, 2020, Oracle and/or its affiliates.
The Universal Permissive License (UPL), Version 1.0
-->
<!-- IT IS about.html view -->
<div class="oj-hybrid-padding">
<h1>About Content Area</h1>
<div>
To change the content of this section, you will make edits to the about.html file located in the /js/views folder.
</div>
<deno-card></deno-card>
</div>
但它没有显示在页面上。 如何将此组件添加到我的应用程序中?
【问题讨论】:
标签: javascript oracle-jet