Skip to content

Instantly share code, notes, and snippets.

@mrchrisadams
Last active November 30, 2017 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrchrisadams/dc1a5db109325db401b0426d0659a6a2 to your computer and use it in GitHub Desktop.
Save mrchrisadams/dc1a5db109325db401b0426d0659a6a2 to your computer and use it in GitHub Desktop.
puzzling over something simple in Vue
export default {
name: 'ProfileComponent',
// active tags is an array like ['foo', 'bar', 'baz']
props: ['auth', 'authenticated', 'profile', 'activetags'],
data() {
return {
ownProfile : true,
isActive: function (ev) {
// this isn't called at all
console.log("rendered on building the dom?")
console.log(ev)
// console.log(this)
}
}
},
computed: {
// this is called once when displaying the component
// isActive: function (ev) {
// console.log("a thing")
// console.log(ev)
// // console.log(this)
// }
},
components: {
Gravatar
},
methods: {
toggleTag: function (triggeredEvent) {
let triggeredTerm = triggeredEvent.target.textContent.trim()
this.$emit('toggleTag', triggeredTerm)
// update appearance by toggling a class
},
// this isn't called at all, when I would expect it to be called every time I check with
// v-bind:class="{ active: isActive }" in the template
// isActive: function (ev) {
// console.log("rendered on building the dom?")
// console.log(ev)
// // console.log(this)
// }
}
}
<template>
<div class="">
<v-gravatar
:email="profile.fields.email"
:size="200" />
<ul class='list tags'>
<li
v-for="tag in profile.fields.tags"
<!--
how do I access 'tag' in this function to update the styles based on whether a
tag is in a list of 'activeTags'?
-->
v-bind:class="{ active: isActive }"
@click="toggleTag">
{{ tag.Name }}
</li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment