A simple Vue component for debugging $vuetify's breakpoint
object, as well as anything else needed for an app.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template lang="pug"> | |
a(v-if="enabled" @click.stop="toggleDebug = !toggleDebug").debug | |
div(v-if="toggleDebug").debug__info | |
h2 Debug | |
template( | |
v-for="(obj, objKey) in debugThese" | |
) | |
hr | |
v-layout(row wrap).obj | |
v-flex(xs12).obj__key {{ objKey }} |
OlderNewer