[Vuejs]-Vue JS Encoding is changed in child components

0👍

Everything should be UTF-8 and this should just work. You shouldn’t need a charset declaration on any div, but there should be one either configured on the server so present in the headers of every response, or in a meta in the head…

<meta charset="utf-8"/>

Check the encoding of the source files of the problem components in a programmer’s text editor. This should also be utf8.

Leave a comment