Skip to content

Commit 62e4f2b

Browse files
S-YOUkazupon
authored andcommitted
chore: fix some closetag mismatches (#5088)
1 parent 40bc592 commit 62e4f2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/features/component/component-slot.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ describe('Component slot', () => {
153153
b: 2,
154154
show: true
155155
},
156-
template: '<test :show="show"><p slot="b">{{b}}</a><p>{{a}}</p></test>',
156+
template: '<test :show="show"><p slot="b">{{b}}</p><p>{{a}}</p></test>',
157157
components: {
158158
test: {
159159
props: ['show'],
@@ -283,7 +283,7 @@ describe('Component slot', () => {
283283

284284
it('programmatic access to $slots', () => {
285285
const vm = new Vue({
286-
template: '<test><p slot="a">A</p><div>C</div><p slot="b">B</div></p></test>',
286+
template: '<test><p slot="a">A</p><div>C</div><p slot="b">B</p></test>',
287287
components: {
288288
test: {
289289
render () {

0 commit comments

Comments
 (0)