A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.
One-line version to paste in your DevTools
Use $$
if your browser aliases it:
~ 108 byte version
<template> | |
<h1>{{ someObj.someFunction() }}</h1> | |
</template> | |
<script> | |
import { useFetch } from '@nuxtjs/composition-api'; | |
import { doSomethingAsync } from './helpers'; | |
export default { | |
setup() { |
import { provideApolloClient } from '@vue/apollo-composable'; | |
export default defineNuxtPlugin(({ app }) => { | |
onGlobalSetup(() => { | |
provideApolloClient(app.apolloProvider?.defaultClient); | |
}); | |
}); |
import { toRef, ssrRef, useContext } from '@nuxtjs/composition-api'; | |
import type { Ref } from '@nuxtjs/composition-api'; | |
/** | |
* Create a global reactive ref that will be hydrated but not shared across ssr requests | |
* | |
* @param key a unique key ensuring that data fetching can be properly de-duplicated across requests | |
* @param init a function that provides initial value for the state when it's not initiated | |
*/ | |
export const useState = <T>(key: string, init?: () => T): Ref<T> => { |
<section class="relative pt-32 pb-16 mb-8 flex content-center items-center justify-center lg:shadow-sm" style="min-height: 55vh;"> | |
<div class="absolute top-0 w-full h-full bg-center bg-cover" | |
style="background-image: url('{{ \Roots\asset('images/header-mock-reversed.jpg') }}');"> | |
<span id="blackOverlay" class="w-full h-full absolute opacity-50 bg-white lg:bg-gradient-to-r lg:from-white lg:to-transparent"></span></div> | |
<div class="container relative mx-auto"> | |
<div class="items-center flex flex-wrap"> | |
<div class="w-full lg:w-8/12 xl:w-6/12 px-4 ml-auto mr-auto text-center lg:mr-12 lg:mt-12 lg:text-left"> | |
<div class="px-4"> | |
<h1 class="text-gray-800 font-semibold text-3xl md:text-5xl font-oxygen leading-none mb-4 lg:text-right"> | |
{{ "Hero Hedline Text" }} |
<figure> | |
<a href="{{ $url }}"> | |
<div class="aspect-ratio-wrap relative" style="padding-bottom: {{ $aspect_ratio ?? '0%' }};"> | |
<img src="{{ $img_url }}" @if($alt) alt="{!! $alt !!}" @endif | |
class="block absolute top-0 left-0 object-cover w-full h-full"> | |
</div> | |
</a> | |
</figure> |
<header class="banner w-full bg-white border-grey-100 shadow-md"> | |
<div class="menu-wrap flex items-center flex-wrap justify-between p-3 w-full z-20 max-w-screen-xl | |
sm:px-6 sm:py-5 lg:relative lg:mx-auto"> | |
<div class="flex items-center flex-no-shrink max-w-2/3"> | |
<a class="brand lg:block lg:pt-2" href="{{ home_url('/') }}"> | |
<img src="{{\Roots\asset('images/brand.png')}}" alt="Brand" | |
class="max-w-200"> | |
</a> | |
</div> |
addEventListener('fetch', event => { | |
event.respondWith(purgeCache(event.request)) | |
}) | |
async function purgeCache(request) { | |
const url = new URL(request.url) |
<template> | |
<component :is="tag" :class="classes"> | |
<slot /> | |
</component> | |
</template> | |
<script> | |
const availableAlign = ['top', 'middle', 'bottom', 'baseline', 'stretch']; | |
const availableJustify = ['center', 'left', 'right', 'between', 'around', 'evenly']; | |
const availableSizes = ['small', 'base', 'large']; |