• Elm
    • 帮助我们改善文档

    Elm

    支持扩展类型:elm

    Elm 是一个具有高级类型系统功能的语言,避免各种错误混淆,确保可以正确地发现运行时错误。它注重快速和易用,构建各种类型的 webapp 是一个很好的选择。Parcel 支持开箱配置 Elm。

    1. <!-- index.html -->
    2. <html>
    3. <body>
    4. <main></main>
    5. <script src="./index.js"></script>
    6. </body>
    7. </html>
    1. // index.js
    2. import { Elm } from './Main.elm'
    3. Elm.Main.init({
    4. node: document.querySelector('main')
    5. })
    1. -- Main.elm
    2. module Main exposing (main)
    3. import Browser
    4. import Html exposing (h1, text)
    5. main =
    6. h1 [] [ text "Hello, Elm!" ]

    了解更多关于 Elm 和它的工具生态系统,查看官方指导。

    帮助我们改善文档

    如果有遗漏或者不清楚的地方,请在本站的仓库 提交issue 或者 编辑此页面.