随笔分类 - uniapp
摘要:一.获取手机号 获取手机号 <template> <u-button open-type="getPhoneNumber" @getphonenumber="getNumber">一键登录</u-button> </template> <script> export default { method
阅读全文
摘要:pc端是直接在option里配置 移动端在renderjs里的监听变化的时候去设置 updateEcharts(newValue, oldValue, ownerInstance, instance) { // 监听 service 层数据变更 try { newValue.xAxis.axisLa
阅读全文
摘要:1.安装vue-i18n 2.根目录下新建locale文件夹,创建index.js import { createI18n } from 'vue-i18n' import en from './en.json' //locale文件夹下的英文配置 import zh from './zh.json
阅读全文