在js文件中使用vue-i18n
在.Vue
文件中可以直接使用$t
方法调用,在js文件中需要把Vue-i18nimport
进来,再调用
1 | // 根据自己具体代码引入vue-i18n |
在.Vue
文件中可以直接使用$t
方法调用,在js文件中需要把Vue-i18nimport
进来,再调用
1 | // 根据自己具体代码引入vue-i18n |
今天启动vue遇到了一个错误
1 | [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build. |
根据错误提示和搜索知之后得出结论:是项目引入的vue编译版本不对导致的
在根目录下创建vue.config.js
,写入以下内容