[Vuejs]-How to change the line break direction to keep the old line on top and new line to break downwards if I write from left to rigth?

0👍

If you print in the normal way i,e left to right the insertion of any new line will come beneath the existing or old line ,Since you are using reverse function it all happens in the opposite way , it prints from right to left and insert the new line above the old line by pushing in down,

Answer:
To overcome this we need to use dir=”rtl” i,e you are indicating the direction as right to left. Find for reference Click here

Leave a comment