File tree 2 files changed +10
-8
lines changed
packages-private/vapor-e2e-test/interop/components
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,10 @@ const slotProp = ref('slot prop')
20
20
21
21
<div v-if =" ok" style =" border : 2px solid orange ; padding : 10px " >
22
22
<h3 >vdom slots in vapor component</h3 >
23
- <button class =" change-vdom-slot-in-vapor-prop" @click =" slotProp = 'changed'" >
23
+ <button
24
+ class =" change-vdom-slot-in-vapor-prop"
25
+ @click =" slotProp = 'changed'"
26
+ >
24
27
change slot prop
25
28
</button >
26
29
<div class =" vdom-slot-in-vapor-default" >
@@ -32,7 +35,10 @@ const slotProp = ref('slot prop')
32
35
</div >
33
36
</div >
34
37
35
- <button class =" toggle-vapor-slot-in-vdom-default" @click =" passSlot = !passSlot" >
38
+ <button
39
+ class =" toggle-vapor-slot-in-vdom-default"
40
+ @click =" passSlot = !passSlot"
41
+ >
36
42
Toggle default slot to vdom
37
43
</button >
38
44
<VdomComp :msg =" msg" >
Original file line number Diff line number Diff line change 1
- <script setup lang="ts">
2
-
3
- </script >
1
+ <script setup lang="ts"></script >
4
2
5
3
<template >
6
- <div >
7
- foo
8
- </div >
4
+ <div >foo</div >
9
5
</template >
You can’t perform that action at this time.
0 commit comments