logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

VUE中如何使用echarts

第一步:安装echarts在命令行中输入npm install echarts --save提示版本号表名安装成功第二步:引入在main.js文件中,引入echarts// echartsimport echarts from 'echarts'Vue.prototype.$echarts = echarts第三步:使用在需要展示echarts的页面中,添加下列代码mounted() {// 基于

#echarts
关于vue异步接口请求

方式一getData: async function() { // 异步方法try { // 顺序请求await this.getSetupList();await this.getRoleList();await this.getList();} catch (e) {}}方式二login: function(code) { // 定义方法return new Promise((resolve,

#vue.js
富文本编辑器froala Editor在vue中的使用

根据官方文档:https://froala.com/wysiwyg-editor/docs/framework-plugins/vue/第一步:安装froala Editornpm install vue-froala-wysiwyg --save第二步:在main.js文件中引入// Require Froala Editor js file.require('froala-editor/js/

elementui下拉框多选报[Vue warn]: <transition-group> children must be keyed: <ElTag>

elementui下拉框多选,选值报错[Vue warn]:children must be keyed:选中一个值后所有的值都会被选中经检查,是由于我的下拉框的value值为一个对象而非单个值值为对象时需要填入value-key<el-select value-key="id" multiple v-model="personnelForm.deptUserArr" placeholder

uniapp中onLaunch异步方法与onLoad执行顺序问题(登录获取token等)

问题描述app.vue里的onLaunch中如果有异步方法,比如登录方法,返回结果可能会在页面的 onLoad 之后,为了让页面的 onLoad 在 onLaunch 之后执行,使用以下解决方案1、main.js添加如下代码Vue.prototype.$onLaunched = new Promise(resolve => {Vue.prototype.$isResolve = resolv

微信小程序调用摄像头实现拍照

微信小程序开发文档:https://developers.weixin.qq.com/miniprogram/dev/component/camera.html首先,需要用户授权摄像头权限,这一步是必须的具体步骤:获取用户当前授权状态,看是否已经授权,如果已经授权直接显示摄像头如果用户还没有授权,则调起授权弹框,用户允许授权则显示摄像头如果用户不允许,则提示用户去设置页面打开摄像头权限用户授权之后

#小程序
到底了