摘要:
/** * 检测图片是否存在 * @param url */ function imageIsExist(url) { return new Promise((resolve) => { var img = new Image(); img.onload = function () { if (th 阅读全文
摘要:
Vue.directive('longpress', { bind: function (el, binding, vNode) { // Make sure expression provided is a function if (typeof binding.value !== 'functi 阅读全文