我已经在 ASP.NET MVC 5 解决方案中通过 npm 安装了 lit-element。我正在尝试按照https://lit-element.polymer-project.org/guide/start指南中的描述创建一个起始标签。在浏览器中,我在 chrome 中得到“GET http://localhost:64580/node_modules/lit-element/lit-element ” net::ERR_ABORTED 404 (Not Found)。
<head>
<script src="~/Scripts/my-element.js" type="module"></script>
</head>
<body>
<my-element></my-element>
</body>
我的元素.js
import { LitElement, html } from "../node_modules/lit-element/lit-element";
class MyElement extends LitElement {
render() {
return html`
<!-- template content -->
<p>A paragraph</p>
`;
}
}
customElements.define('my-element', MyElement);