您用于导入 css 的语法是错误的,它应该类似于文档中给出的 index.html 中的以下内容:
<link rel="stylesheet"
href="node_modules/material-components-web/dist/material-components-web.css">
但是node_modules
当你使用 webpack 时将无法访问,你可以将这个文件移动到你的静态文件夹并像下面这样导入它:
<link rel="stylesheet" href="/static/material-components-web.css" type="text/css">
以下是文档中的完整代码:
<!DOCTYPE html>
<html class="mdc-typography">
<head>
<title>Material Components for the web</title>
<link rel="stylesheet" href="/static/material-components-web.css" type="text/css">
</head>
<body>
//HTML where you use material components
<script src="/static/material-components-web.js"></script>
<script>mdc.autoInit()</script>
</body>
</html>