Expand section for active access by default

This commit is contained in:
luis cielak
2018-08-23 16:18:53 -04:00
committed by luisgov
parent 941fdceff0
commit 53f959ca8b
2 changed files with 9 additions and 2 deletions

View File

@@ -1,9 +1,16 @@
export default {
name: 'toggler',
props: {
defaultVisible: {
type: Boolean,
default: () => false
}
},
data: function () {
return {
isVisible: false
isVisible: this.defaultVisible
}
},