尝试使用Svg
和Svg.Attributes
。获取错误消息
I cannot find module 'Svg'.
Module 'Main' is trying to import it.
Potential problems could be:
* Mispelled the module name
* Need to add a source directory or new dependency to elm-package.json
我确定没有任何拼写错误,因为我复制并粘贴了教程中的导入内容。我在哪里安装这个库?
我要经历的教程是elm-lang.org,特别是准时部分。
答案 0 :(得分:4)
您需要elm-lang/svg
个包作为elm-package.json
中的依赖项。在项目目录中运行elm package install elm-lang/svg
。