File tree Expand file tree Collapse file tree
docs/.vitepress/components Expand file tree Collapse file tree Original file line number Diff line number Diff 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)
263263const output = ref (' ' )
264264const error = ref (' ' )
265265const isInitialLoading = ref (true )
266- const _activeOutputTab = ref <' json' | ' blocks' >(' blocks' )
266+ const activeOutputTab = ref <' json' | ' blocks' >(' blocks' )
267267const compiledProject = ref <ScratchProjectJsonLike | null >(null )
268268const selectedTargetKey = ref <string | null >(null )
269269let 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})
You can’t perform that action at this time.
0 commit comments