zhangzengfei
2021-06-18 c7eebdfc2fb2de3f81aab9d14c1190e20e70ea9f
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;