我正在尝试Polythene,但似乎所有文档都是针对Mithril的旧版本的。我无法弄清楚如何在当前版本的Mithril中使用该库。

以下是一些我可以与秘银0.2一起使用的基本代码:

import m from "mithril";
import button from "polythene/button/button";

var app = {
    view: function() {
        return m("div", [
            m.component(button, {
                label: "Hello",
                raised: true
            })
        ]);
    }
}

m.mount(document.body, app);


当前的秘银1.1将如何编写?

最佳答案

这是对特定库的支持请求,因此您可能应该查看存储库。

这里有一个与Mithril 1版本有关的未解决问题:https://github.com/ArthurClemens/polythene/issues/38

Polythene has reached version 1 and now supports Mithril v1!

关于javascript - 如何将聚乙烯与 Mithril 1.1配合使用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43220864/

10-12 15:58