├── .env.github ├── .env.legacy ├── .env.production ├── .github └── workflows │ └── static.yml ├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public └── vite.svg ├── scripts └── build.cjs ├── src ├── App.vue ├── assets │ └── vue.svg ├── components │ └── HelloWorld.vue ├── main.js ├── style.css └── utils.js ├── vite.config.js └── 演示图 ├── 图一.jpg └── 图二.png /.env.github: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/.env.github -------------------------------------------------------------------------------- /.env.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/.env.legacy -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/.env.production -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/public/vite.svg -------------------------------------------------------------------------------- /scripts/build.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/scripts/build.cjs -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/src/assets/vue.svg -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/src/main.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/src/style.css -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/src/utils.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/vite.config.js -------------------------------------------------------------------------------- /演示图/图一.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/演示图/图一.jpg -------------------------------------------------------------------------------- /演示图/图二.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumingluren/PicFreeCutter/HEAD/演示图/图二.png --------------------------------------------------------------------------------