Cockatrice/webclientvue
2025-06-19 22:15:37 -04:00
..
public feature: added game room, card manipulation (dragging, stacking, tapping) 2025-06-19 02:38:59 -04:00
src feature: added socket connection, updated styles 2025-06-19 22:15:37 -04:00
.editorconfig initial commit 2025-06-14 16:52:23 -04:00
.gitignore initial commit 2025-06-14 16:52:23 -04:00
.npmrc initial commit 2025-06-14 16:52:23 -04:00
.prettierrc.json initial commit 2025-06-14 16:52:23 -04:00
eslint.config.js initial commit 2025-06-14 16:52:23 -04:00
index.html initial commit 2025-06-14 16:52:23 -04:00
package-lock.json feature: added create,join,spectate buttons and create game dialog 2025-06-18 17:17:47 -04:00
package.json initial commit 2025-06-14 16:52:23 -04:00
postcss.config.js initial commit 2025-06-14 16:52:23 -04:00
quasar.config.ts initial commit 2025-06-14 16:52:23 -04:00
README.md initial commit 2025-06-14 16:52:23 -04:00
tsconfig.json initial commit 2025-06-14 16:52:23 -04:00
version.txt feature: added create,join,spectate buttons and create game dialog 2025-06-18 17:17:47 -04:00

Webatrice (webclientvue)

Webatrice built with vue and quasar


New to the project? Follow below to get started locally

Install the dependencies

npm install

Start the app in development mode (hot-code reloading, error reporting, etc.)

quasar dev

Useful commands

Lint the files

npm run lint

Format the files with prettier

npm run format

Build the app for production

quasar build

Routing

Adding a page to routing

Inside of src/router/routes.ts you'll follow the pattern in the file for the rest of the pages in this app; add an object to the routes array. Specify a path, a layout (things like header/footer) and the page to use.

Quasar Routing Documentation

Routing to a page

Let's say you setup the routing already and now you need a way to navigate to a page. This project utilizes Vue Router

Additional Info

Customize the configuration

See Configuring quasar.config.js.