├── .gitignore ├── LICENSE ├── README.md ├── back ├── app.py └── requirements.txt └── front ├── index.html ├── package-lock.json ├── package.json ├── public └── favicon.ico ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ └── HelloWorld.vue └── main.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/README.md -------------------------------------------------------------------------------- /back/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/back/app.py -------------------------------------------------------------------------------- /back/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/back/requirements.txt -------------------------------------------------------------------------------- /front/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/front/index.html -------------------------------------------------------------------------------- /front/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/front/package-lock.json -------------------------------------------------------------------------------- /front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/front/package.json -------------------------------------------------------------------------------- /front/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/front/public/favicon.ico -------------------------------------------------------------------------------- /front/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/front/src/App.vue -------------------------------------------------------------------------------- /front/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/front/src/assets/logo.png -------------------------------------------------------------------------------- /front/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/front/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /front/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/front/src/main.js -------------------------------------------------------------------------------- /front/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ailln/vue-flask-template/HEAD/front/vite.config.js --------------------------------------------------------------------------------