Skip to content

Commit 014f3b9

Browse files
committed
test
1 parent 5b5e853 commit 014f3b9

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

playground/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ import com from './src/index.vue'
33
</script>
44

55
<template>
6-
<com />
6+
<com style="height:80px" />
77
</template>

playground/src/index.vue

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
<script setup lang="ts" name="Count">
1+
<script setup lang="ts" inheritAttrs="false" name="Count" >
22
import { ref } from 'vue'
33
const num = ref(0)
44
</script>
55

66
<template>
7-
count: {{ num }} <button @click="num++">
8-
add
9-
</button>
7+
<div>
8+
count: {{ num }} <button @click="num++">
9+
add
10+
</button>
11+
</div>
1012
</template>

0 commit comments

Comments
 (0)