Skip to content

Instantly share code, notes, and snippets.

@rlam3
Created July 25, 2019 14:30
Show Gist options
  • Save rlam3/7e3e939af8f28b14172f688ece42fed4 to your computer and use it in GitHub Desktop.
Save rlam3/7e3e939af8f28b14172f688ece42fed4 to your computer and use it in GitHub Desktop.
vue with stylus
<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