Skip to content

Commit

Permalink
fix(framework-examples): Fix template syntax in VueJS example (#365)
Browse files Browse the repository at this point in the history
In vuejs 2.2 parsing raise template error if html element has no matching end tag
fix #365
  • Loading branch information
guillaumevincent authored and traviskaufman committed Feb 28, 2017
1 parent f8d72ba commit 465a674
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions framework-examples/vue/src/v-mdc-checkbox/Checkbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
d="M1.73,12.91 8.1,19.28 22.79,4.59"/>
</svg>
<div class="mdc-checkbox__mixedmark"></div>
</div>
</div>
</template>

Expand Down
1 change: 1 addition & 0 deletions framework-examples/vue/src/v-mdc-snackbar/Snackbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<div class="mdc-snackbar__text">{{message}}</div>
<div class="mdc-snackbar__action-wrapper">
<button type="button" @click="actionClicked" class="mdc-button mdc-snackbar__action-button" :aria-hidden="actionHidden">{{actionText}}</button>
</div>
</div>
</template>

Expand Down

0 comments on commit 465a674

Please sign in to comment.