Last active
December 1, 2022 18:50
-
-
Save mattaebersold/fa78f71d38b19b358dd2f07854c3d503 to your computer and use it in GitHub Desktop.
Test Gist
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"> | |
.copy(:class="maxWidth" :data-component-parent='componentName') | |
in-view(animate once class='content'): cloak-copy-craft-block(:block="block") | |
</template> | |
<script lang="coffee"> | |
export default | |
props: | |
block: Object | |
computed: | |
maxWidth: -> @block?.maxWidth or "max-w-s" | |
componentName: -> @$GTM_COMPONENTS.COPY | |
</script> | |
<style lang="stylus" scoped> | |
.content | |
standard-in-view(content) | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment