Last active
September 11, 2018 11:37
-
-
Save daliborgogic/724967d02b26901f4199f1f681f62479 to your computer and use it in GitHub Desktop.
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 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