UNPKG

real-name-pc

Version:
18 lines (14 loc) 293 B
/** * @author: liuyang9 * @description: 对外提供store单例 */ import configStore from './configStore'; export default class store { static get Instance() { if (!this._instance) { this._instance = configStore(); } return this._instance; } constructor() { } }