bach 2 anni fa
parent
commit
1ca1469233
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/store/modules/history.js

+ 1 - 1
src/store/modules/history.js

@@ -16,7 +16,7 @@ export default {
   // mutations
   mutations: {
     addItem (state, item) {
-      state.items.push(item)
+      state.items.unshift(item)
     },
     setOpened (state, opened) {
       state.opened = opened