在js文件中使用vue-i18n

.Vue文件中可以直接使用$t方法调用,在js文件中需要把Vue-i18nimport进来,再调用

1
2
3
// 根据自己具体代码引入vue-i18n
import i18n from '@/lang'
i18n.tc('xxx.xxx')

关于vue编译版本引入的问题

今天启动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自动注册全局组件

背景

Vue项目中会有很多自己封装的组件,如果每次使用的时候都需要手动引入,那还是很麻烦的。

阅读更多