如何初始化Material Web V3组件

问题描述 投票:0回答:1

如何初始化 Material Web V3 组件, 例如我想创建一个文本字段:

<md-filled-text-field label="Label" value="Value"></md-filled-text-field>

代码:

<html>
<head>
    <script type="module" src="https://cdn.jsdelivr.net/npm/@material/[email protected]/all.js"></script>
</head>
<body>
    <md-filled-text-field label="Label" value="Value"></md-filled-text-field>
</body>
</html>

我得到的错误如下:

未捕获的类型错误:无法解析模块说明符“tslib”。相对引用必须以“/”、“./”或“../”开头。

material-design material-components-web
1个回答
0
投票

像这样使用它来使用组件:

https://thingster.app/things/ctUhszB47Wb52JgHeMV9m

© www.soinside.com 2019 - 2024. All rights reserved.