<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Vue的样式绑定</title> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <div> <h1 @click="changeColor" :style="styleObj">Hello Vue</h1> </div> </div> <script> var app = new Vue({ el: '#app', template: '', data: { styleObj:{ color:'seagreen', fontSize:'50px' } }, methods: { changeColor: function () { this.styleObj.color = this.styleObj.color==='black'?'seagreen':'black' } }, }) </script> </body> </html>