enjoy-common-ui
v0.0.1
Published
@enjoy enjoy-common-ui
Downloads
2
Maintainers
Readme
开发
# 克隆项目
git clone https://gitee.com/y_project/enjoy-Vue
# 进入项目目录
cd enjoy-ui
# 查看当前npm使用仓库(默认地址:https://registry.npmjs.org/ )
#npm config get registry
# 配置本公司私有仓库地址
#npm config set registry http://nexus.enjoysoftware.cn/repository/npm-public/
# 安装依赖
npm install
# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npm.taobao.org
# 启动服务
npm run dev
浏览器访问 http://localhost:80
发布
# 构建测试环境
npm run build:stage
# 构建生产环境
npm run build:prod
关于【国际化】使用
普通文本使用方式: {{ $t('login.title') }} 标签内使用方式: :placeholder="$t('login.password')"画 js内使用方式 this.$t('login.user.password.not.match')
修改语言
this.$store.dispatch('app/setLanguage', lang)
语言文件在
src/language/zh.js src/language/en.js