Skip to content

Commit cbf37ea

Browse files
committed
refactor: remove unused code
1 parent 4cb7698 commit cbf37ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e/__projects__/basic/components/ClassComponent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="hello">
2+
<div>
33
<h1 data-computed>{{ computedMsg }}</h1>
44
<h2 data-props>{{ msg }}</h2>
55
<h3 data-methods>{{ dataText }}</h3>
@@ -20,7 +20,7 @@ export default class ClassComponent extends Vue {
2020
return `Message: ${(this.$props as any).msg}`
2121
}
2222
23-
changeMessage(text: string): void {
23+
changeMessage(): void {
2424
this.dataText = 'Updated'
2525
}
2626
}

0 commit comments

Comments
 (0)