Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 904 Bytes

README.md

File metadata and controls

41 lines (33 loc) · 904 Bytes

vue-components

A collection of Brainz-made Vue components

Lettering:

<lettering>{{string}}</lettering>

RevealImage:

Reveal image using animation upon reaching viewport. Accepts {{treshold}} (offset) parameter. Default treshold is 0.

<reveal-image
    src="{{src}}"
    alt="{{alt}}"
    :threshold="{{threshold}}"
/>

MailTo

Vue component for <a href="mailto:...">...</a>

<mail-to to="[email protected]" />

<mail-to to="[email protected]">Contact us</mail-to>

<mail-to
    to="[email protected]"
    subject="subject content"
    body="body content"
    cc="[email protected]"
/>

<mail-to
    to="[email protected]"
    :cc="['[email protected]', '[email protected]']"
/>