Skip to content

Instantly share code, notes, and snippets.

@lampsbr
lampsbr / keybase.md
Last active April 25, 2021 16:35
keybase.md

Keybase proof

I hereby claim:

  • I am lampsbr on github.
  • I am lampsbr (https://keybase.io/lampsbr) on keybase.
  • I have a public key ASA17xS6eHCqBUAB69TLwk4CLGa3lJnsrVF0-ubueJS4Xgo

To claim this, I am signing this object:

@lampsbr
lampsbr / NativeDialog.vue
Created July 31, 2025 20:49
Native HTML dialog ported to simple vue2 component
<template>
<dialog ref="dialogRef" class="center-dialog">
<div v-if="open" v-on-clickaway="closeMe">
<slot></slot>
</div>
</dialog>
</template>
<script>
import { directive as onClickaway } from 'vue-clickaway'