refactor: types refactor

This commit is contained in:
Evan You
2018-10-08 18:09:13 -04:00
parent ba918b5afe
commit d22b71b27e
11 changed files with 74 additions and 64 deletions

View File

@@ -7,7 +7,7 @@ describe('2.x compat build', async () => {
const root = document.createElement('div')
document.body.appendChild(root)
const instance = new Vue({
const instance = new Vue<any>({
data() {
return { count: 0 }
},