-
-
Save leeovery/14cd0a09704d6b11f1fb to your computer and use it in GitHub Desktop.
Alert .vue example.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="Alert Alert--{{ type | capitalize }}"> | |
<slot></slot> | |
</div> | |
</template> | |
<script> | |
export default { | |
props: { | |
type: { | |
default: 'info' | |
} | |
} | |
} | |
</script> | |
<style lang="sass"> | |
.Alert { | |
padding: 10px; | |
} | |
.Alert--Info { | |
background: #e3e3e3; | |
} | |
.Alert--Success { | |
background: #8AC48A; | |
} | |
.Alert--Error { | |
background: red; | |
color: white; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment