├── .env.example ├── .gitignore ├── LICENSE.md ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── Georama.ttf │ └── logo.png ├── components │ ├── ChatBox.vue │ ├── Message.vue │ └── RegisterDialog.vue ├── core │ └── Firebase.ts └── main.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/Georama.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/src/assets/Georama.ttf -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/ChatBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/src/components/ChatBox.vue -------------------------------------------------------------------------------- /src/components/Message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/src/components/Message.vue -------------------------------------------------------------------------------- /src/components/RegisterDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/src/components/RegisterDialog.vue -------------------------------------------------------------------------------- /src/core/Firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/src/core/Firebase.ts -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/src/main.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxcened/vue-chat-app/HEAD/yarn.lock --------------------------------------------------------------------------------