Skip to content

Commit 9656f85

Browse files
committed
a
1 parent 7d17493 commit 9656f85

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/.vitepress/components/Playground.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ const BlocklyLoading = defineComponent({
233233
},
234234
})
235235
236-
const _BlocklyAsync = defineAsyncComponent({
236+
const BlocklyAsync = defineAsyncComponent({
237237
loader: () => import('./Blockly.vue'),
238238
loadingComponent: BlocklyLoading,
239239
delay: 0,
@@ -263,7 +263,7 @@ const resizeObserver = shallowRef<ResizeObserver | null>(null)
263263
const output = ref('')
264264
const error = ref('')
265265
const isInitialLoading = ref(true)
266-
const _activeOutputTab = ref<'json' | 'blocks'>('blocks')
266+
const activeOutputTab = ref<'json' | 'blocks'>('blocks')
267267
const compiledProject = ref<ScratchProjectJsonLike | null>(null)
268268
const selectedTargetKey = ref<string | null>(null)
269269
let runDebounceTimer: ReturnType<typeof setTimeout> | null = null
@@ -328,11 +328,11 @@ const selectedTarget = computed<ScratchTargetView | null>(() => {
328328
)
329329
})
330330
331-
const _selectedTargetLabel = computed(
331+
const selectedTargetLabel = computed(
332332
() => selectedTarget.value?.name ?? 'Target',
333333
)
334334
335-
const _selectedTargetBlocks = computed<PackedBlockMap | null>(() => {
335+
const selectedTargetBlocks = computed<PackedBlockMap | null>(() => {
336336
const blocks = selectedTarget.value?.blocks
337337
return isPackedBlockMap(blocks) ? { ...blocks } : null
338338
})

0 commit comments

Comments
 (0)