search

Home  >  Q&A  >  body text

I have a problem sorting an array and I don't know why

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粉798010441P粉798010441455 days ago389

reply all(1)I'll reply

  • P粉362071992

    P粉3620719922023-09-07 09:58:55

    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>

    reply
    0
  • Cancelreply