Skip to content

Instantly share code, notes, and snippets.

name description
frontend-design
Design and refine advanced, modern frontend experiences with polished UI, technical micro-interactions, and professional visual systems. Use when the work is focused on layout, interaction design, motion, and visual polish for existing flows or components.

Skill: Frontend Design

Purpose

Design and refine modern, advanced frontend experiences in our primary web application, focusing on interaction design, micro-interactions, and visual polish while staying consistent with our design system, routing, and testing conventions.

@bskimball
bskimball / AppDataProvider
Created March 31, 2018 19:04
Simple Vue Data Provider component
<template>
<div class="provider">
<slot :result="result" :add="add" :remove="remove" :update="update"></slot>
</div>
</template>
<script>
import axios from 'axios'
import _ from 'lodash'