Can vue get the value of span?

this is traversed:

clipboard.png

The

code is as follows:

<div class="planDate">
    <span v-for="item in planDate"></span>
</div>
----------
data:{
        planDate:[1-1,1-2,1-3,1-4,1-5,1-6,1-7,1-8,1-9,1-10,1-11,1-12,1-13,1-14,1-15,1-16,1-17,1-18,1-19,1-20,1-21,1-22,1-23,1-24,2-1],
},

the effect I want:
Click which one will get the corresponding value, for example, click the first one and you will get "1-1"


<div class="planDate">
    <span v-for="item in planDate" @click="handleClick(item)"></span>
</div>
----------
data:{
        planDate:[1-1,1-2,1-3,1-4,1-5,1-6,1-7,1-8,1-9,1-10,1-11,1-12,1-13,1-14,1-15,1-16,1-17,1-18,1-19,1-20,1-21,1-22,1-23,1-24,2-1],
},

methods: {
 handleClick(item) {
    console.log(item)
 }
}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3ac18-e78b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3ac18-e78b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?