diff --git a/styleguide/src/system/components/layout/Card/Card.vue b/styleguide/src/system/components/layout/Card/Card.vue index 06a3b7c1e..d45f047cd 100644 --- a/styleguide/src/system/components/layout/Card/Card.vue +++ b/styleguide/src/system/components/layout/Card/Card.vue @@ -14,7 +14,10 @@ v-if="image || $slots.image"> - +
- {{ header }} @@ -123,6 +126,16 @@ export default { type: Boolean, default: false } + }, + data() { + return { + error: false + } + }, + methods: { + onError() { + this.error = true + } } }