是否可以将SLIM与ReactJs一起使用

时间:2015-07-11 20:49:08

标签: reactjs slim-lang

有一个经典的React组件:

var CommentForm = React.createClass({
  render: function() {
    return (
      <form className="commentForm">
        <input type="text" placeholder="Your name" />
        <input type="text" placeholder="Say something..." />
        <input type="submit" value="Post" />
      </form>
    );
  }
});

是否可以使用Slim而不是HTML?像这样:

var CommentForm = React.createClass({
  render: function() {
    return (
      form.commentForm
        input type="text" placeholder="Your name"
        input type="text" placeholder="Say something..."
        input type="submit" value="Post"
    );
  }
});

0 个答案:

没有答案