How does the "tag" attribute in router-link work? – SEO
I have these two router-links, one enclosed in a li element, the other applied with a tag="li" property: <router-link tag="li" :to="{ name: 'work'}">Work</router-link <li><router-link :to="{ name: 'news'}">News</router-link></li> which a compiled in the browser like so: Is the tag property of…