Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <div class="col-md-6" v-for="feature in this.venues_features" v-if="!checkForAllFeaturesList(feature)">
  2. <p>
  3. <span class="btn btn-success btn-xs mr-2" @click="addFeatureFromList(feature)">
  4. <i class="fa fa-plus" ></i>
  5. </span>
  6. {{ feature.name }}
  7. </p>
  8. </div>
  9.  
  10. addFeatureFromList(feature) {
  11. this.venueFeatures[feature.id] = true;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement