# vue-execute **Repository Path**: just4it/vue-execute ## Basic Information - **Project Name**: vue-execute - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### 介绍 执行器封装 #### 安装 ````javascript npm i @jeebey/vue-execute ```` #### 使用说明 ````javascript import Vue from 'vue' import exec from '@jeebey/vue-execute' Vue.prototype.$exec = exec ```` #### 接口文档 ##### delay(ms, [once]) ##### retry(fn, max) ##### loops(fn, ms) ##### loop(fn, ms, tag) ##### stop(tag) #### 使用示例 ##### retry ````javascript this.$exec.retry(function(){}, 3) ````