I'm working on a RealWord App for Vue project. I'm trying to find a way to hide the phrase "test", so that it cannot show any article with the "test" phrase.
TagList.vue Component:
<template>
<ul class="tag-list">
<li
class="tag-default tag-pill tag-outline"
v-for="(tag, index) of tags"
:key="index"
>
<span v-text="tag" />
</li>
</ul>
</template>
<script>
export default {
name: "TagList",
props: {
tags: Array
}
};
</script>