Created
March 15, 2016 02:36
-
-
Save laracasts/8f78fec0fd65cac7c942 to your computer and use it in GitHub Desktop.
Alert .vue example.
This file contains 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
bad ass