├── .gitignore ├── tsconfig.node.json ├── index.html ├── src ├── router │ ├── index.ts │ └── router.dynamic.ts ├── components │ ├── index.ts │ ├── MenuList.vue │ └── CTable.vue ├── views │ ├── home │ │ └── index.vue │ ├── pv │ │ └── index.vue │ ├── event │ │ └── index.vue │ ├── intersection │ │ └── index.vue │ ├── http │ │ └── index.vue │ ├── performance │ │ └── index.vue │ └── err │ │ └── index.vue ├── assets │ └── global.scss ├── main.ts ├── App.vue └── utils │ └── sourcemap.ts ├── README.md ├── tsconfig.json ├── .eslintrc.cjs ├── package.json ├── vite.config.ts ├── public └── vite.svg └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | types 4 | examples-copy -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node", 6 | "allowSyntheticDefaultImports": true 7 | }, 8 | "include": ["./vite.config.ts"] 9 | } 10 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |6 | 基于 JS 跨平台插件,为前端项目提供【 埋点、行为、性能、异常、请求、资源、路由、曝光、录屏 】监控手段 7 |
8 |
56 |
63 |