I have a problem sorting an array and I don't know why
P粉798010441
P粉798010441 2023-09-06 16:24:51
0
1
403

I have a problem with my code, I don't know why the s are not working and always giving different errors anyway i tried mistake: 'arraysorted' undefined no-undef

<div>
   {{ arraysorted }}
 </div>
</template>

<script>
const Array = [];
export default {
 data: () => ({
   Array: [1, 24, 23, 56, 76, 5, 468, 97, 65, 90, 23, 53, 23],
   arraysorted: [],
 }),
 mounted: {
   ArraySort() {
     return arraysorted = Array.sort(function (a, b) {
       return b - a;
     });
   },
 },
};
</script>

P粉798010441
P粉798010441

reply all(1)
P粉362071992

You can use computed properties:

new Vue({
  el: "#demo",
  data: () => ({
    myArray: [1, 24, 23, 56, 76, 5, 468, 97, 65, 90, 23, 53, 23],
  }),
  computed: {
    arraysorted() {
      const arrSorted = [...this.myArray]
      return arrSorted.sort((a, b) => b - a)
    },
  },
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="demo">
  {{ arraysorted }}
  {{myArray}}
</div>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template