0
<newsfeed-view inline-template :newsfeed="{{  $feed }}">
    <article class="bg-white p-8 w-1/2 mt-4 p-4" id="newsfeedPost" v-bind:class="{ 'active' : isHighlighted } ">
        <h3>
            <a href="#" class="text-blue-dark hover:no-underline hover:text-black active:no-underline active:text-4xl" @click="this.isHighlighted = true">{{  $feed->newsfeed_title }}</a>
        </h3>
        <p class="mt-4">{{ $feed->body }}</p>
    </article>
</newsfeed-view>

これは私のスタイルセクションです

<style lang="scss" scoped>
.highlighted { 
    @apply .border-l-4 .border-orange ;
}

#newsfeedPost { 
    @apply .rounded-lg ; 
}


</style>

そのアンカータグをクリックすると、強調表示されたクラスを追加したい..

4

1 に答える 1