I try to print a list with v-for that does the same thing as a for cycle like this
for(n=2018; n>=1920; n--)
This prints a list from 2018 to 1920
The way I have it now is
v-for="n in 2018)" v-if='n >= 120'
But obviously the list is printed from 1920 to 2018