Skip to content

Instantly share code, notes, and snippets.

@daliborgogic
Last active September 11, 2018 11:37
Show Gist options
  • Save daliborgogic/724967d02b26901f4199f1f681f62479 to your computer and use it in GitHub Desktop.
Save daliborgogic/724967d02b26901f4199f1f681f62479 to your computer and use it in GitHub Desktop.
<template lang="pug">
h1(v-html="content")
</template>
<script>
export default {
props: {
content: {
type: String,
default: ''
}
}
}
</script>
<style lang="stylus" scoped>
h1
font-size rem(32px)
line-height 1.3125
font-weight 400
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment