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>
? ? ? ? )
? ? }
}
2018-07-01
66666