Skip to content

Commit 9e5ca76

Browse files
committed
chore: fix playground issue
1 parent 182c3c4 commit 9e5ca76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playground/app.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<script setup lang="ts">
22
import { javascript } from '@codemirror/lang-javascript'
33
import { lineNumbersRelative } from '@uiw/codemirror-extensions-line-numbers-relative'
4-
import { okaidia } from '@uiw/codemirror-theme-okaidia';
4+
import { okaidia } from '@uiw/codemirror-theme-okaidia'
55
66
import type { ViewUpdate } from '@codemirror/view'
77
import type { CodeMirrorRef, Statistics } from '../src/runtime/types/nuxt-codemirror'
88
99
const code = ref('console.log("Hello, CodeMirror!");')
10-
const theme = ref<'light' | 'dark' | 'none'>('light')
10+
// const theme = ref<'light' | 'dark' | 'none'>('light')
1111
const codemirror = ref<CodeMirrorRef>()
1212
1313
const extensions = [lineNumbersRelative, javascript({ jsx: true, typescript: true })]

0 commit comments

Comments
 (0)