diff options
author | pdevq <45507854+pdevq@users.noreply.github.com> | 2019-10-23 17:29:55 -0400 |
---|---|---|
committer | pdevq <45507854+pdevq@users.noreply.github.com> | 2019-10-23 17:29:55 -0400 |
commit | a2fdb8a97b3210017b27c8a08908e18618bec6b4 (patch) | |
tree | adce04ed86d166d61128afc1a8ca0db49275d0e0 /app.js | |
parent | 8aa8398fba4916ced1b793a7ca7e8574fc7ff98e (diff) | |
download | homer-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.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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>` |