Skip to content

Instantly share code, notes, and snippets.

View Jerome1337's full-sized avatar
:shipit:

Jérôme Pogeant Jerome1337

:shipit:
View GitHub Profile
@Jerome1337
Jerome1337 / gist:f7b4cb0c22a912fa2a87a41e190ef83f
Created February 17, 2021 12:42
TokyoNight Windows Terminal scheme
{
"name": "TokyoNight",
"black": "#363b54",
"red": "#f7768e",
"green": "#41a6b5",
"yellow": "#e0af68",
"blue": "#7aa2f7",
"purple": "#bb9af7",
"cyan": "#7dcfff",
"white": "#787c99",

Keybase proof

I hereby claim:

  • I am jerome1337 on github.
  • I am jerome1337 (https://keybase.io/jerome1337) on keybase.
  • I have a public key ASBpf5vveFydNWOJ1NTsR3p_SLe5pDpZribgy4ssWjOwJwo

To claim this, I am signing this object:

@Jerome1337
Jerome1337 / modal.vue
Last active March 2, 2019 10:39
VueJS slots example
<template>
<div class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<slot name="title"></slot>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>