Expand section for active access by default
This commit is contained in:
@@ -1,9 +1,16 @@
|
||||
export default {
|
||||
name: 'toggler',
|
||||
|
||||
props: {
|
||||
defaultVisible: {
|
||||
type: Boolean,
|
||||
default: () => false
|
||||
}
|
||||
},
|
||||
|
||||
data: function () {
|
||||
return {
|
||||
isVisible: false
|
||||
isVisible: this.defaultVisible
|
||||
}
|
||||
},
|
||||
|
||||
|
Reference in New Issue
Block a user