问答详情
源自:3-3 实现todo应用的界面

jsx里面也可以写样式

export default{

    data() {

        return {

            author: "Mjcc"

        }

    },

    render() {

        var styles = {  

            marginTop: '40',  

            textAlign: 'center',

            color: '#bfbfbf',

            fontSize: '10',

            textShadowOffset:{width:5,hegith:5},  

            textShadowRadius:2,  

            textShadowColor:'grey'   


        }  

        return (

            <div id= "footer" style={styles}>

                <span>I am {this.author}!</span>

            </div>

        )

    }

}


提问者:qq_晨钟暮鼓_5 2018-06-19 16:39

个回答

  • 落霞与孤鹜齐飞
    2018-07-01 22:58:57

    66666