Created
January 2, 2022 15:35
-
-
Save abdullahqureshi1994/968dd56c85a0a6d05643219a8b924494 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 `this.list` as an Array of object and filter by if active is true | |
Expected output | |
[ | |
{name: 'John', active: true}, | |
{name: 'Jane', active: true} | |
] | |
*/ | |
var temp = []; | |
if(list){ | |
for (const [key, value] of Object.entries(list) ) { | |
if(value){ | |
temp.push({name:key, active:value}); | |
} | |
} | |
} | |
return temp; | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment