UNPKG

npmchenwei111

Version:

test1111

26 lines (19 loc) 347 B
/** * Created by chenwei on 2017/8/30. */ class ActionBarManager { arr = [] constructor () { } pushBar (comp) { this.arr.push(comp) } popBar () { this.arr.pop() } isTop (comp) { if (this.arr.length === 0) return true return this.arr[this.arr.length - 1] === comp } } export default new ActionBarManager()