Skip to content

Instantly share code, notes, and snippets.

@jimmycrequer
Last active July 12, 2019 07:38
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 jimmycrequer/91896c7dfc735ec930854a2c37f21745 to your computer and use it in GitHub Desktop.
Save jimmycrequer/91896c7dfc735ec930854a2c37f21745 to your computer and use it in GitHub Desktop.
Slots
<template>
<div class="wrapper" :class="level">
<slot></slot>
</div>
</template>
<script>
export default {
props: {
level: { type: String, default: 'error' }
}
}
</script>
<style scoped>
.wrapper { border-radius: 5px; margin: 5px; padding: 10px; }
.right { float: right; }
.info { color: #004085; background-color: #cce5ff; border: 1px solid #b8daff; }
.warn { color: #856404; background-color: #fff3cd; border: 1px solid #ffeeba; }
.error { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; }
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment