A companion website for the game Legends of Idleon.
Test website updated with this repo can be found here.
Find an issue posted in the issues tab in the repository, and then write a comment that you will be working on the feature/changes. Once you are finished, make sure that your branch is up to date with the master
branch, and create a new Pull Request (PR). Your PR will be reviewed before merge!
To run the project, download yarn with npm install -g yarn
and then run the following:
yarn
- install dependencies
yarn dev
- run in localhost
VSCode + Vetur. Make sure to enable vetur.experimental.templateInterpolationService
in settings!
.vue
Imports in TSSince TypeScript cannot handle type information for .vue
imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in .vue
imports (for example to get props validation when using manual h(...)
calls), you can use the following:
@vuedx/typescript-plugin-vue
to the plugins section in tsconfig.json
src/shims-vue.d.ts
as it is no longer needed to provide module info to Typescriptsrc/main.ts
in VSCode