Skip to content

Commit c783a89

Browse files
committed
refactor: remove unnecessary method overrides from ts plugin
1 parent 3ffa761 commit c783a89

File tree

11 files changed

+1003
-1518
lines changed

11 files changed

+1003
-1518
lines changed

.editorconfig

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
root = true
2+

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"printWidth": 120,
3+
"singleQuote": true,
4+
"semi": true,
5+
"trailingComma": "es5",
6+
"arrowParens": "always"
7+
}

examples/simple/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default defineComponent({
1212
setup(props) {
1313
const bar = ref(props.foo)
1414
const baz = computed(() => bar.value)
15-
props.
15+
props.bar
1616
watch(() => props.foo, foo => {
1717
bar.value = props.foo
1818
})

0 commit comments

Comments
 (0)