File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed
packages/courseware/src/typing/questions/falling-letters Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 11# Cards
22
33<script setup >
4- import FallingLetters from ' @vue-skuilder/courseware/typing/questions/falling-letters/FallingLetters .vue'
4+ import TestComponent from ' @vue-skuilder/courseware/typing/questions/falling-letters/TestComponent .vue'
55</script >
66
7- Test page with Vue components from monorepo.
7+ Test page with simple Vue component from monorepo.
88
9- <FallingLetters />
9+ <TestComponent />
Original file line number Diff line number Diff line change 1+ <template >
2+ <div style =" border : 2px solid red ; padding : 20px ; margin : 10px ; background : #f9f9f9 ;" >
3+ <h2 >Test Component from Monorepo</h2 >
4+ <p >This is a simple Vue component with no external dependencies.</p >
5+ <button @click =" count++" style =" padding : 8px 16px ; margin : 5px ;" >
6+ Clicked {{ count }} times
7+ </button >
8+ </div >
9+ </template >
10+
11+ <script setup>
12+ import { ref } from ' vue'
13+
14+ const count = ref (0 )
15+ </script >
You can’t perform that action at this time.
0 commit comments