Skip to content

Commit 38ed005

Browse files
committed
chore: add test for #3123
1 parent c9db255 commit 38ed005

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

test-workspace/tsc/vue2/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"exclude": [
1111
"../vue3/#2639",
1212
"../vue3/#2700",
13+
"../vue3/#3123",
1314
"../vue3/#3289",
1415
"../vue3/#3476",
1516
"../vue3/#3518",
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<script setup lang="ts">
2+
import { FunctionalComponent, SVGAttributes } from 'vue';
3+
4+
declare const VueSvg: FunctionalComponent<SVGAttributes>;
5+
</script>
6+
7+
<template>
8+
<div>
9+
<a href="https://vitejs.dev" target="_blank">
10+
<img src="/vite.svg" class="logo" alt="Vite logo" />
11+
</a>
12+
<a href="https://vuejs.org/" target="_blank">
13+
<VueSvg width="96" class="logo vue" fill-opacity="0.5" />
14+
</a>
15+
</div>
16+
</template>

0 commit comments

Comments
 (0)