Skip to content

Commit 2a4e598

Browse files
committed
update repro
1 parent 423b79f commit 2a4e598

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

repro/eslint.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import pluginVue from 'eslint-plugin-vue'
55
export default [
66
js.configs.recommended,
77
...pluginVue.configs['flat/recommended'],
8-
...vueI18n.configs.recommended,
8+
...vueI18n.configs['flat/recommended'],
99
{
1010
rules: {
1111
// override rules

repro/src/components/MyComponent.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<template>
22
<p>{{ $t('hello') }}</p>
3+
<p>{{ $t('hi') }}</p>
34
</template>

repro/src/resources/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"hello": "Hello! <span>DIO!</span>",
3-
"hi": "Hi! DIO!"
3+
"unused": "Hi! DIO!"
44
}

0 commit comments

Comments
 (0)