Is there any good way to click and switch between background picture and text color in vue?

is there any good way to click and switch background picture and text color in

vue

clipboard.png

Apr.02,2021

of course style is bound to a value

<div v-bind:style="{ background: `url(${bg})`, color: color }
data: {
  bg: 'xxx.png',
  color: 'red'
}

next door. If there are many styles involved, it is recommended to bind class

.
Menu