Skip to content

Instantly share code, notes, and snippets.

@jakedohm
jakedohm / Icon.vue
Created July 19, 2021 03:10
Craft CMS + Vue Icons
<template>
<svg>
<use :xlink:href="path"></use>
</svg>
</template>
<script>
export default {
props: {
name: String,
@jakedohm
jakedohm / Example.vue
Last active April 28, 2022 05:17
Smooth Reflow (Vue)
<template>
<SmoothReflow>
<div>My height will change at some point, and the SmoothReflow component
will automatically make sure that it animates</div>
</SmoothReflow>
</template>
@jakedohm
jakedohm / BaseFindMyComponent.vue
Created December 7, 2022 21:03
Find My Components
<template>
<div class="widget">
<h2>Find My {{ title }}</h2>
<div>
<div v-if="initialState">
<p class="description">{{ description }}</p>
<div class="input">
<!-- Main input -->
<input