zhangzengfei
2022-07-20 1f1b2fcc05f6b0f83bf7602f453cc73dd6e9b7ce
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;