Skip to content

Commit 2149557

Browse files
committed
chore: add test for #3152
1 parent 7973fda commit 2149557

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<script setup>
2+
</script>
3+
4+
<template>
5+
<input />
6+
</template>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<script setup>
2+
import { ref } from 'vue'
3+
import MyInput from './MyInput.vue';
4+
5+
const msg = ref('Hello World!')
6+
</script>
7+
8+
<template>
9+
<MyInput disabled />
10+
</template>

0 commit comments

Comments
 (0)