Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Sep 12, 2023
1 parent f147270 commit ad4dbc6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions packages/vue-test-workspace/reference/slot-default/entry.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<template>
<slot></slot>
<!-- ^reference: 1 -->
</template>
<slot></slot>
<!-- ^reference: 1 -->
</template>
6 changes: 4 additions & 2 deletions packages/vue-test-workspace/reference/slot-default/foo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ import Entry from './entry.vue';
</script>

<template>
<Entry></Entry>
</template>
<Entry>
<div></div>
</Entry>
</template>
6 changes: 3 additions & 3 deletions packages/vue-test-workspace/reference/slot-named/entry.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<template>
<slot name="foo"></slot>
<!-- ^reference: 1 -->
</template>
<slot name="foo"></slot>
<!-- ^reference: 1 -->
</template>
2 changes: 1 addition & 1 deletion packages/vue-test-workspace/reference/slot-named/foo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ import Entry from './entry.vue';

<template>
<Entry #foo></Entry>
</template>
</template>

0 comments on commit ad4dbc6

Please sign in to comment.