UNPKG

vue-cli-plugin-element-zkml

Version:

Quickly build a backend system with vue-cli and element-ui in seconds.

15 lines (13 loc) 292 B
/** * 公用工具库 */ import store from "@/store"; // Vuex // 自动生成序号 const serial = (pageSize, page, index) => { return pageSize * (page - 1) + index; }; export default { install(Vue) { Vue.prototype.$serialUtils = serial; // 自动生成序号 } };