Currently, I am assigning a class to an li element depending on the route path using this code snippet:
<li v-bind:class="{ 'current': $route.path == '/services' }"><nuxt-link to="/services">Services</nuxt-link>
I am interested in checking for multiple paths, but I am uncertain if that can be done.
Your assistance would be highly appreciated.