Skip to content

Instantly share code, notes, and snippets.

@lmartim
Created September 28, 2021 03:04
Show Gist options
  • Save lmartim/6996e4dfcda2726b5bfb31f1602a5624 to your computer and use it in GitHub Desktop.
Save lmartim/6996e4dfcda2726b5bfb31f1602a5624 to your computer and use it in GitHub Desktop.
Header component using color token
<template>
<h1>{{ text }}</h1>
</template>
<script>
import { defineComponent } from "vue";
export default defineComponent({
props: {
text: {
type: String,
default: "Hello World",
},
},
});
</script>
<style lang="scss" scoped>
h1 {
color: $color-base-red;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment