I hereby claim:
- I am hanspagel on github.
- I am hanspagel (https://keybase.io/hanspagel) on keybase.
- I have a public key ASAfRC4yG0qyruU1xQRl5rg1OtzuSUIQLcge9EkFpVeX2go
To claim this, I am signing this object:
| { | |
| "compilerOptions": { | |
| "target": "es2019", | |
| "module": "esnext", | |
| "strict": true, | |
| "jsx": "preserve", | |
| "importHelpers": true, | |
| "resolveJsonModule": true, | |
| "moduleResolution": "node", | |
| "esModuleInterop": true, |
| <?php | |
| namespace App\Drivers; | |
| use SplFileInfo; | |
| use FilesystemIterator; | |
| use Orbit\Facades\Orbit; | |
| use Illuminate\Support\Str; | |
| use RecursiveIteratorIterator; | |
| use RecursiveDirectoryIterator; |
| const CustomTable = Table.extend({ | |
| // Add a `width` attribute | |
| addAttributes() { | |
| return { | |
| ...this.parent?.(), | |
| width: { | |
| default: null, | |
| }, | |
| } | |
| }, |
I hereby claim:
To claim this, I am signing this object:
| <template> | |
| <div ref="editorRef" class="editor" /> | |
| </template> | |
| <script setup lang="ts"> | |
| import { ref, onMounted, onBeforeUnmount } from 'vue' | |
| import { EditorView, basicSetup } from 'codemirror' | |
| import { json } from '@codemirror/lang-json' | |
| const editorRef = ref<HTMLDivElement | null>(null) |