We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfebf04 commit de7f8e6Copy full SHA for de7f8e6
template/client/App.vue
@@ -1,5 +1,5 @@
1
<template lang="html">
2
- <h1>{{ hello }}</h1>
+ <h1>\{{ hello }}</h1>
3
</template>
4
5
<script>
template/test/client/app.test.js
@@ -6,7 +6,7 @@ describe('App.vue', () => {
6
7
it('should render correct content', () => {
8
const vm = new Constructor().$mount();
9
- return Vue.nextTick(() => {
+ return Vue.nextTick().then(() => {
10
expect(vm.$el.innerHTML).to.equal('Hello World!');
11
});
12
0 commit comments