Skip to content

Commit 651b8c4

Browse files
committed
Add data support
1 parent 343b924 commit 651b8c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/fixtures/data/data-typescript.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
1717
private myString = 'foo';
1818
19-
private myArray: ['a', 'b', 'c'];
19+
private myArray = ['a', 'b', 'c'];
2020
21-
private myObject: { a: 'x', b: 'y', c: 'z' };
21+
private myObject = { a: 'x', b: 'y', c: 'z' };
2222
};
2323
</script>

0 commit comments

Comments
 (0)