Skip to content

Commit 303e0da

Browse files
committed
test(tsc): add.a test case for class component
1 parent 994ccd0 commit 303e0da

File tree

1 file changed

+9
-0
lines changed
  • test-workspace/tsc/passedFixtures/vue3/class-component

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<script lang="ts">
2+
export default class {
3+
private data = 'Hello, Vue 3!';
4+
}
5+
</script>
6+
7+
<template>
8+
<div>{{ data }}</div>
9+
</template>

0 commit comments

Comments
 (0)