Skip to content

Instantly share code, notes, and snippets.

@mattaebersold
Last active December 1, 2022 18:50
Show Gist options
  • Save mattaebersold/fa78f71d38b19b358dd2f07854c3d503 to your computer and use it in GitHub Desktop.
Save mattaebersold/fa78f71d38b19b358dd2f07854c3d503 to your computer and use it in GitHub Desktop.
Test Gist
<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