Skip to content

Commit 3572aae

Browse files
committed
add todo imports
1 parent 69d4961 commit 3572aae

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

packages/courseware/src/typing/questions/falling-letters/TestComponent.vue

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,23 @@
33
<h2>Test Component from Monorepo</h2>
44
<p>Testing TypeScript imports with lang="ts"</p>
55
<button @click="count++" style="padding: 8px 16px; margin: 5px">Clicked {{ count }} times</button>
6-
7-
<div style="margin-top: 10px; font-size: 12px;">
8-
<strong>Imported types evidence:</strong><br>
9-
testLetter: {{ testLetter }}<br>
6+
7+
<div style="margin-top: 10px; font-size: 12px">
8+
<strong>Imported types evidence:</strong><br />
9+
testLetter: {{ testLetter }}<br />
1010
testPos: {{ testPos }}
1111
</div>
1212
</div>
1313
</template>
1414

1515
<script setup lang="ts">
16+
// FallingLetters.vue imports to test incrementally:
17+
// import { defineComponent, ref, onMounted, onUnmounted, PropType } from 'vue';
18+
// import { useViewable, useQuestionView } from '@vue-skuilder/common-ui';
19+
// import { FallingLettersQuestion } from './index';
20+
// import { ViewData } from '@vue-skuilder/common';
21+
22+
// Current working imports:
1623
import { ref } from 'vue';
1724
import { Letter, TreePosition } from './types';
1825

0 commit comments

Comments
 (0)