vue动态修改css样式

<span :style="{backgroundColor:colorHex}">测试文字span>
<button @click="changeColor">更改颜色button>
export default{
	data(){
		return{
			colorHex:"#eeeeee",
		}
	},
	methods:{
		changeColor(){
			this.colorHex="#000";
		},
	}
}

你可能感兴趣的:(#,前端,vue.js,css,javascript)