반응형
Message compilation error: Invalid linked format
Message compilation error: Unexpected lexical analysis in token
Message compilation error: Unexpected empty linked key
이런 메세지들이 뜨면서 안되기 시작했는데 알고보니 특수문자는 별도로 처리를 해줬어야했음.
1. 특수문자 앞뒤로 {''} 붙여주기
// 틀림
const string = "특수문자 !,@,#,$를 넣어주세요.";
// 맞음
const string = "특수문자 {'!'},{'@'},{'#'},{'$'}를 넣어주세요.";
이렇게 해주면 되는데 꼭 따옴표(쌍따옴표 말고)로 써야함!
https://github.com/kazupon/vue-i18n/issues/1149
'vue' 카테고리의 다른 글
[vue] [vuex] unknown mutation type (0) | 2023.04.25 |
---|---|
[vue3] 동적인 ref 쓰기 (0) | 2023.03.28 |
[vue3] 부모 컴포넌트에서 자식 컴포넌트 함수 실행하기 (2) | 2023.03.22 |
[vue] router로 데이터 보내기(params, query) (1) | 2023.03.20 |
[vue3] markRow로 들어간 컴포넌트에서 watch쓰기 (0) | 2023.03.15 |