gitextract_3wr5p3hn/ ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .stylelintrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── ci.yml ├── docs/ │ ├── dev.md │ ├── mixConfig.md │ ├── mixImg.md │ └── tool.md ├── jest.config.js ├── package.json ├── scripts/ │ ├── build.sh │ ├── rollup.config.js │ ├── rollup.e2e.config.js │ ├── rollup.umd.config.js │ └── tool.sh ├── src/ │ ├── config/ │ │ └── errorMap.js │ ├── index.js │ └── utils/ │ ├── canvasUtils.js │ ├── createImg.js │ ├── qrcode.js │ └── tools.js ├── test/ │ ├── config/ │ │ ├── allConfig.js │ │ └── index.js │ ├── e2e/ │ │ ├── index.js │ │ └── test.html │ └── unit/ │ ├── __snapshots__/ │ │ └── canvasUtils.test.js.snap │ ├── canvasUtils.test.js │ ├── index.test.js │ └── tools.test.js └── toolkit/ ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .stylelintrc ├── babel.config.js ├── package.json ├── public/ │ └── index.html ├── src/ │ ├── App.vue │ ├── components/ │ │ └── layout/ │ │ └── default/ │ │ ├── Layout.vue │ │ ├── components/ │ │ │ └── header/ │ │ │ └── appHeader.vue │ │ ├── index.js │ │ └── layout.less │ ├── main.js │ ├── router/ │ │ ├── index.js │ │ └── routers.js │ └── template/ │ └── dynamicFe/ │ ├── index.js │ └── index.vue └── vue.config.js