filestudio-bingo
v0.4.7
Published
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
Downloads
246
Readme
Vue 3 + TypeScript + Vite
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 <script setup>
SFCs, check out the script setup docs to learn more.
Learn more about the recommended Project Setup and IDE Support in the Vue Docs TypeScript Guide.
filestudio
├─ .git
│ ├─ config
│ ├─ description
│ ├─ HEAD
│ ├─ hooks
│ │ ├─ applypatch-msg.sample
│ │ ├─ commit-msg.sample
│ │ ├─ fsmonitor-watchman.sample
│ │ ├─ post-update.sample
│ │ ├─ pre-applypatch.sample
│ │ ├─ pre-commit.sample
│ │ ├─ pre-merge-commit.sample
│ │ ├─ pre-push.sample
│ │ ├─ pre-rebase.sample
│ │ ├─ pre-receive.sample
│ │ ├─ prepare-commit-msg.sample
│ │ ├─ push-to-checkout.sample
│ │ ├─ sendemail-validate.sample
│ │ └─ update.sample
│ ├─ index
│ ├─ info
│ │ └─ exclude
│ ├─ logs
│ │ ├─ HEAD
│ │ └─ refs
│ │ ├─ heads
│ │ │ └─ master
│ │ └─ remotes
│ │ └─ origin
│ │ └─ HEAD
│ ├─ objects
│ │ ├─ info
│ │ └─ pack
│ │ ├─ pack-2a91be369b706d397ba67d5987081b73ffd17949.idx
│ │ ├─ pack-2a91be369b706d397ba67d5987081b73ffd17949.pack
│ │ └─ pack-2a91be369b706d397ba67d5987081b73ffd17949.rev
│ ├─ packed-refs
│ └─ refs
│ ├─ heads
│ │ └─ master
│ ├─ remotes
│ │ └─ origin
│ │ └─ HEAD
│ └─ tags
├─ .gitignore
├─ .prettierrc
├─ .vscode
│ ├─ extensions.json
│ └─ settings.json
├─ index.html
├─ package-lock.json
├─ package.json
├─ postcss.config.js
├─ public
│ └─ vite.svg
├─ README.md
├─ src
│ ├─ App.vue
│ ├─ assets
│ │ ├─ css
│ │ │ └─ tailwind.css
│ │ └─ vue.svg
│ ├─ bizlogic
│ │ ├─ application
│ │ │ ├─ DirectoryServiceImpl.ts
│ │ │ └─ DocumentsServiceImpl.ts
│ │ ├─ domain
│ │ │ ├─ models
│ │ │ │ ├─ Directory.ts
│ │ │ │ └─ Documents.ts
│ │ │ ├─ repository
│ │ │ │ ├─ DirectoryRepository.ts
│ │ │ │ └─ DocumentsRepository.ts
│ │ │ └─ services
│ │ │ ├─ DirectoryService.ts
│ │ │ └─ DocumentService.ts
│ │ └─ infrastructure
│ │ ├─ repositories
│ │ │ ├─ DirectoryRepositoryImpl copy.ts
│ │ │ ├─ DirectoryRepositoryImpl.ts
│ │ │ ├─ DocumentRepositoryImpl.ts
│ │ │ └─ FileRepositoryImpl copy.ts
│ │ └─ utils
│ │ ├─ ImageCompression.ts
│ │ └─ ImageEditor.ts
│ ├─ main.ts
│ ├─ router
│ │ └─ index.ts
│ ├─ style.css
│ ├─ support
│ │ └─ i18n
│ │ ├─ index.ts
│ │ └─ lang
│ │ ├─ en.json
│ │ ├─ zh_CN.json
│ │ └─ zh_HK.json
│ ├─ tools
│ │ ├─ CornersTool.vue
│ │ ├─ CropTool.vue
│ │ ├─ DrawTool.vue
│ │ ├─ FilterTool.vue
│ │ ├─ ResizeTool.vue
│ │ ├─ ShapesTool.vue
│ │ ├─ StickersTool.vue
│ │ ├─ TextTool.vue
│ │ └─ TransformTool.vue
│ ├─ ui
│ │ ├─ components
│ │ │ ├─ Directory.vue
│ │ │ ├─ DocumentsExplorer.vue
│ │ │ ├─ DocumentsItem.vue
│ │ │ └─ DocumentsManager.vue
│ │ └─ index.vue
│ └─ vite-env.d.ts
├─ src.zip
├─ tailwind.config.js
├─ tsconfig.app.json
├─ tsconfig.json
├─ tsconfig.node.json
└─ vite.config.ts