Skip to content

Instantly share code, notes, and snippets.

@Faizanq
Last active July 27, 2022 06:28
Show Gist options
  • Save Faizanq/6bcf62b6d60f87e316b505d2c2694b94 to your computer and use it in GitHub Desktop.
Save Faizanq/6bcf62b6d60f87e316b505d2c2694b94 to your computer and use it in GitHub Desktop.
<template>
<div class="widget">
<div v-if="activeItems && activeItems.length > 0">
<ul>
<li v-for="item in activeItems" :key="item.id">
{{item.name}}
</li>
</ul>
</div>
</div>
</template>
<script>
export default {
data() {
return {
loading: true,
list: {
'John': true,
'Jane': true,
'Bob': false
},
}
},
computed: {
activeItems() {
return Object.keys(this.list).map(key=>{ return {name:key,active:this.list[key]}}).filter(item=>item.active);
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment