zhangzengfei
2021-06-25 603076cf722b47d472f26b28d7cd69d39734b036
1
2
3
4
5
6
7
8
9
10
11
12
13
import DataPool from "@/Pool/PollData"
 
/* eslint-disable */
const onlyDataPool = new DataPool
 
const mixin = {
  data() {
    return {
      PollData: onlyDataPool
    };
  },
};
export default mixin;