Created
July 25, 2019 14:30
-
-
Save rlam3/7e3e939af8f28b14172f688ece42fed4 to your computer and use it in GitHub Desktop.
vue with stylus
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> | |
<p class="blue_text">{{ msg }}</p> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: '', | |
data() { | |
return { | |
msg: "hello world" | |
} | |
} | |
} | |
</script> | |
<style lang="stylus" scoped> | |
.blue_text | |
color blue | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment