今天使用脚手架创建项目的的时候一键构建了vue的基本骨架,但是启动服务以后,封装vant一些组件的时候却出现了一个检测问题:
在这里插入图片描述
在eslint中,存在定义的变量但是却没有 使用,它是不允许的,那么应该如何解决这个问题呢?
在这里插入图片描述
补充其他relus

 'space-before-function-paren': 0,//函数定义时括号前面要不要有空格
    'indent': 0,//缩进
    'comma-dangle': [0, 'never'],//对象字面量项尾不能有逗号
    'handle-callback-err': 0,//nodejs 处理错误
    'object-curly-spacing': [0, 'never'],//大括号内是否允许不必要的空格
    'no-unused-vars': [0, {
      // 允许声明未使用变量
      'vars': 'local',
      // 参数不检查
      'args': 'none'
    }],

搞定!!!

顺便把vant组件好用的一些方法封装分享出来


import { Toast, Dialog } from 'vant';

export default {

    install: function (Vue) {
        // 错误提示
        Vue.prototype.Toast = function (msg) {
            if (msg) {
                Toast({
                    message: msg,
                    duration: 1500
                });
            }
        },
            // 成功提示
            Vue.prototype.successToast = function (msg) {
                if (msg) {
                    Toast.success({
                        message: msg,
                        duration: 2000
                    });
                }
            },

            // 错误提示
            Vue.prototype.errorToast = function (msg) {
                if (msg) {
                    Toast.fail({
                        message: msg,
                        duration: 2000,
                        icon: 'cross'
                    });
                }
            },
            // 显示loading
            Vue.prototype.loading = function () {
                Toast.loading({
                    duration: 0, // 持续展示 toast
                    forbidClick: true,
                    message: '加载中...',
                });
            },

            // 隐藏loading
            Vue.prototype.loadEnd = function () {
                Toast.clear();
            },

            // 弹窗
            Vue.prototype.wDialog = function (tips, msg, showCancel, cancelText, confirmText, confirmColor = '#1989fa', cb_yes, cb_no) {
                Dialog.confirm({
                    title: tips,
                    message: msg,
                    showCancelButton: showCancel,
                    cancelButtonText: cancelText,
                    confirmButtonColor: confirmColor,
                    confirmButtonText: confirmText,
                }).then((confirm) => {
                    // on confirm
                    cb_yes && cb_yes(confirm)
                }).catch((cancel) => {
                    // on cancel
                    cb_no && cb_no(cancel)
                });
            },

            // // 判断是否微信浏览器
            Vue.prototype.isWeixin = function () {
                let ua = navigator.userAgent.toLowerCase();
                let res = ua.indexOf('micromessenger') != -1;
                return res
            }
    }
}

Logo

前往低代码交流专区

更多推荐