Created
December 1, 2022 23:22
-
-
Save mattaebersold/c8af51a7200f9e67637a9ea05bdec6e0 to your computer and use it in GitHub Desktop.
This file contains 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'> | |
section.spacer(:class='classes' :data-component-parent='componentName') | |
</template> | |
<!-- ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– --> | |
<script lang='coffee'> | |
export default | |
props: block: Object | |
computed: | |
componentName: -> @$GTM_COMPONENTS.SPACER | |
# Root classes | |
classes: -> "height-#{@block.height}" | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment