Skip to content

Commit

Permalink
chore: add test for #3123
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed May 13, 2024
1 parent c9db255 commit 38ed005
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions test-workspace/tsc/vue2/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"exclude": [
"../vue3/#2639",
"../vue3/#2700",
"../vue3/#3123",
"../vue3/#3289",
"../vue3/#3476",
"../vue3/#3518",
Expand Down
16 changes: 16 additions & 0 deletions test-workspace/tsc/vue3/#3123/main.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<script setup lang="ts">
import { FunctionalComponent, SVGAttributes } from 'vue';
declare const VueSvg: FunctionalComponent<SVGAttributes>;
</script>

<template>
<div>
<a href="https://vitejs.dev" target="_blank">
<img src="/vite.svg" class="logo" alt="Vite logo" />
</a>
<a href="https://vuejs.org/" target="_blank">
<VueSvg width="96" class="logo vue" fill-opacity="0.5" />
</a>
</div>
</template>

0 comments on commit 38ed005

Please sign in to comment.