-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
always create outro method for top-level block - fixes #1470
- Loading branch information
1 parent
cffbd27
commit f97601f
Showing
4 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
test/runtime/samples/if-block-component-without-outro/Widget.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<div>A wild component appears</div> |
15 changes: 15 additions & 0 deletions
15
test/runtime/samples/if-block-component-without-outro/_config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export default { | ||
skipIntroByDefault: true, | ||
nestedTransitions: true, | ||
|
||
data: { | ||
foo: true, | ||
}, | ||
|
||
html: '<div>A wild component appears</div>', | ||
|
||
test(assert, component, target) { | ||
component.set({ foo: false }); | ||
assert.htmlEqual(target.innerHTML, ''); | ||
}, | ||
}; |
11 changes: 11 additions & 0 deletions
11
test/runtime/samples/if-block-component-without-outro/main.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{#if foo} | ||
<Widget/> | ||
{/if} | ||
|
||
<script> | ||
export default { | ||
components: { | ||
Widget: './Widget.html' | ||
} | ||
}; | ||
</script> |