我执行了Vuetify Quick Start中所述的基本步骤:
$ vue create my-app
$ cd my-app
$ vue add vuetify
$ npm run serve
接下来,我编辑了src \ App.vue文件,仅在第14行添加了一些特殊字符(ç´):
<span class="mr-2">Latest Release ç ´</span>
在Google Chrome浏览器中,我看到这样的字符显示为^。我还检查了代码,看到了:
<span class="mr-2">Latest Release � �</span>
(index.html具有编码元标记)
是否需要在Vuetify中配置编码?