aboutsummaryrefslogtreecommitdiffhomepage
path: root/app.js
diff options
context:
space:
mode:
authorpdevq <45507854+pdevq@users.noreply.github.com>2019-10-23 17:29:55 -0400
committerpdevq <45507854+pdevq@users.noreply.github.com>2019-10-23 17:29:55 -0400
commita2fdb8a97b3210017b27c8a08908e18618bec6b4 (patch)
treeadce04ed86d166d61128afc1a8ca0db49275d0e0 /app.js
parent8aa8398fba4916ced1b793a7ca7e8574fc7ff98e (diff)
downloadhomer-a2fdb8a97b3210017b27c8a08908e18618bec6b4.tar.gz
homer-a2fdb8a97b3210017b27c8a08908e18618bec6b4.tar.zst
homer-a2fdb8a97b3210017b27c8a08908e18618bec6b4.zip
Add the option to style tags
Diffstat (limited to 'app.js')
-rw-r--r--app.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app.js b/app.js
index 41bdd9d..def0be7 100644
--- a/app.js
+++ b/app.js
@@ -85,7 +85,9 @@ Vue.component('service', {
85 <p class="subtitle is-6">{{ item.subtitle }}</p> 85 <p class="subtitle is-6">{{ item.subtitle }}</p>
86 </div> 86 </div>
87 </div> 87 </div>
88 <strong class="tag" v-if="item.tag">#{{ item.tag }}</strong> 88 <div class="tag" :class="item.tagstyle" v-if="item.tag">
89 <strong class="tag-text">#{{ item.tag }}</strong>
90 </div>
89 </div> 91 </div>
90 </a> 92 </a>
91 </div></div>` 93 </div></div>`