Solving the problem of vue data sorting

clipboard.png
how does the front end sort according to the is_top field of the background data

Mar.22,2022

data.sort((a,b)=>{
    return a.is_top-b.is_top
})

a. B what is

Menu