站内搜索:
首页 >> 前端 >> 内容
ReactMixinHelloWorld

时间:2016/12/19 9:20:52

import React from 'react';
var ReactDOM = require('react-dom'); 
var HelloWorldMixin = {
    sayHello: function () {
       return "hello world!"
    }
};

var HelloWorld = React.createClass({
    mixins: [HelloWorldMixin],
    render: function () {
        return <p>{this.sayHello()}
        </p>
    }
})
ReactDOM.render(
     <HelloWorld />
    , document.getElementById('J_contentContainer'))

  • 上一篇:JS匿名自执行函数
  • 下一篇:编程 html实例
  • 返回顶部