Skip to content

Commit

Permalink
chore: fix some closetag mismatches (vuejs#5088)
Browse files Browse the repository at this point in the history
  • Loading branch information
S-YOU authored and kazupon committed Mar 4, 2017
1 parent 40bc592 commit 62e4f2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/features/component/component-slot.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ describe('Component slot', () => {
b: 2,
show: true
},
template: '<test :show="show"><p slot="b">{{b}}</a><p>{{a}}</p></test>',
template: '<test :show="show"><p slot="b">{{b}}</p><p>{{a}}</p></test>',
components: {
test: {
props: ['show'],
Expand Down Expand Up @@ -283,7 +283,7 @@ describe('Component slot', () => {

it('programmatic access to $slots', () => {
const vm = new Vue({
template: '<test><p slot="a">A</p><div>C</div><p slot="b">B</div></p></test>',
template: '<test><p slot="a">A</p><div>C</div><p slot="b">B</p></test>',
components: {
test: {
render () {
Expand Down

0 comments on commit 62e4f2b

Please sign in to comment.