Vue Click the picture in the list to switch?

I want to implement that when I click on an image in a list and let him switch, I can let him switch now, but when I click on the second li tab, I change the image of the previous switch. How to achieve, click that to change the current click, do not let it affect what has been changed?
Picture description

this is the current effect

<!DOCTYPE html>
<html lang="zh">
<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>Document</title>
</head>
<body>
    <div id="app">
        <ul>
            <li v-for="(item,ind) in list">
                <img :src="num==ind?url:urls" alt=""  @click.stop="up(ind)"/>
                {{item.id}}
            </li>
        </ul>
    </div>
    <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js" ></script>
    <script>
        new Vue({
            el:"-sharpapp",
            data:{
                list:[{id:1},{id:2},{id:3}],
                url:"0111.png",
                urls:"01.png",
                num:null
            },
            methods:{
                up(ind){
                    this.num = ind
                }
            }
        })
    </script>
</body>
</html>
Mar.03,2022

Please put the code instead of the picture to ask the question. Do you want to type the code in your picture again in order to help you solve the problem?
your solution is also simple: maintain num as an array or object, or directly add a judgment field

to item of list . < hr >
data: {
  list: [{id: 1, num: false}, {id: 2, num: false}, {id: 3, num: false}],
  url: '0111.png',
  urls: '01.png',
},
<li v-for="(item, ind) in list">
  <img :src="item.num ? url : urls" alt="" @click.stop="item.num = !item.num"/>
  {{item.id}}
</li>

you can add attributes such as chnage:true to the list sub-item, such as chnage:true | false, which can be switched according to the current change of each sub-item.

Menu