Skip to content

Instantly share code, notes, and snippets.

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 acacha/247670f6a410103125d14b1eec268f4f to your computer and use it in GitHub Desktop.
Save acacha/247670f6a410103125d14b1eec268f4f to your computer and use it in GitHub Desktop.
<script>
export default {
data() {
return {
isCollapsed : this.collapsed,
isRemovable: this.removable,
isSolid: this.solid,
}
},
...
props: {
collapsed: {
type: Boolean,
default: false
},
removable: {
type: Boolean,
default: true
},
solid: {
type: Boolean,
default: true
},
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment