Thank you Brian! That looks amazing. Would this sit outside the ejs, or be put in the vue code at the bottom? (i'm basing this directly off of your example and am getting a little stumped with the little variations that vue uses to implement similar concepts).
One of the main areas i'm getting stumped as a follow up to your example for implementing is with the button code v-bind idea:
<button v-on:click="follow(u)" v-bind:class="u.isFollowing ? 'following' : 'not-following'">
in my case, based on your example, how would i toggle between more than two options with enums?
v-bind:class="{u.FollowingMode:['green', 'yellow', 'red', 'not-following']} ?