Skip to content

Commit 6d753b6

Browse files
authored
drop node v10 (#526)
* remove console log * drop node v10
1 parent c2a0fb2 commit 6d753b6

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
"yarn-deduplicate": "^3.1.0"
129129
},
130130
"engines": {
131-
"node": ">= 10"
131+
"node": ">= 12"
132132
},
133133
"private": true,
134134
"changelog": {

packages/vue-i18n/test/i18n.test.ts

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -424,19 +424,7 @@ describe('slot reactivity', () => {
424424
<i18n-t keypath='hello'/>
425425
</SlotChild>
426426
</div>
427-
`,
428-
created() {
429-
// @ts-ignore
430-
console.log('child created $t', this.$t)
431-
},
432-
beforeUnmount() {
433-
// @ts-ignore
434-
console.log('child beforeUnmount $t', this.$t)
435-
},
436-
unmounted() {
437-
// @ts-ignore
438-
console.log('child unmounted $t', this.$t)
439-
}
427+
`
440428
}
441429

442430
const App = defineComponent({

0 commit comments

Comments
 (0)