[Vuejs]-Setting title and border for series of Articles

1👍

If you generating elements out of you’re database its mostly through a loop. So make sure you put the header h1 out of the loop. Otherwise the loop will print the statement all over again.

If you want to set a border you can just make an extra id or class in youre css or with the tag in you’re html and add it to you’re

.class or #id {border: solid black 3px} for example

Leave a comment