试试这个。 html js export default { data() { return { imageY: 0, imageScale: 1, transitionDuration: 3000 }; }, methods: { handleClick() { this.imageY = 100; this.imageScale = 0; } } }; css .box{ width: 200px; height: 200px; background: #ccc; } img { width: 100px; height: 100px; }