Browse Source

link zu button geändert -> Tagsuche durch "link"

master
Xenia Gruenzinger 4 years ago
parent
commit
8ddf59666b
2 changed files with 3 additions and 3 deletions
  1. 0
    1
      public/index.html
  2. 3
    2
      public/routes/msgCard.js

+ 0
- 1
public/index.html View File

@@ -101,7 +101,6 @@
<form class="om-searchbar" @submit.prevent="search()">
<b-field>
<b-autocomplete
id="searchtext"
rounded
v-model="searchtext"
@keydown.native.enter="search"

+ 3
- 2
public/routes/msgCard.js View File

@@ -5,7 +5,8 @@ Vue.component('MsgCard', {
<img src="favicon.ico" width=20px height=20px>
</h6>
{{ msg.message }}<br><br>
<a v-for="tag in msg.tag" href="#">#{{ tag }} </a>
<!--<a v-for="tag in msg.tag" href="#">#{{ tag }} </a>-->
<b-button class="tags" type="is-text" v-for="tag in msg.tag>#{{ tag }} </b-button>
</p>
<div class="om-card-footer"> <div class="om-user-line">
<i class="material-icons">account_circle</i>
@@ -22,7 +23,7 @@ Vue.component('MsgCard', {
},

methods: {
myFilter: function() {
myFilter: function() {
this.isActive = !this.isActive;
},
}

Loading…
Cancel
Save