Skip to content

Instantly share code, notes, and snippets.

@morgler
Last active March 23, 2019 17:35
Show Gist options
  • Save morgler/39e16a63a487b9272b7029fae5c66c01 to your computer and use it in GitHub Desktop.
Save morgler/39e16a63a487b9272b7029fae5c66c01 to your computer and use it in GitHub Desktop.
<template>
<div :class="cssClassForStatus" />
</template>
<script>
export default {
props: {
eventStatus: String,
},
methods: {
cssClassForStatus() {
return `status-${this.eventStatus}`
},
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment