我想在我的 Angular 应用程序中使用 Polymers LitElement。
为此,我在应用程序test.js
的文件夹中创建了一个示例组件 ( ) assets
,并将其导入到index.html
.
测试.js:
// Import the LitElement base class and html helper function
import { LitElement, html } from '../../../node_modules/lit-element/lit-element';
// Extend the LitElement base class
class Test extends LitElement {
render(){
return html`
<h1>Test works!</h1>
`;
}
}
// Register the new element with the browser.
customElements.define('ti8m-test', Test);
索引.html:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NgInAction</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script type="module" src="/assets/comp-new/default/src/ti8m/test.js"></script>
</head>
<body>
<app-root></app-root>
</body>
</html>
我安装lit-element
在 comp-new 目录中,使用npm install --prefix ./ lit-element
.
我npm install lit-element
在项目本身也做了一个,所以 npm 模块肯定是可用的。
但是,当我使用 运行我的 Angular 应用程序ng serve
并导航到包含我的测试组件的 URL 时,我在 DOM 中找到了我的组件(使用检查器),但没有显示任何内容。此外,当我将 aconsole.log
放入render
函数中时,我永远不会在浏览器中看到输出。所以看起来该方法从未真正被调用过。
下面是它在 DOM 中的样子:
这是我的项目结构: