updating README

This commit is contained in:
theo1 2021-02-06 16:47:52 +01:00
parent 63310c0c9f
commit ab6c257060
3 changed files with 5 additions and 26 deletions

View File

@ -1,26 +1,5 @@
# Dacstylo # Dacstylo
Vue-based typing speed calculator. Vue-based typing speed calculator. Beta version 4eva.
## Project setup Accessible [over here](http://dactylo.theo-lem.org/)
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Lints and fixes files
```
npm run lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

View File

@ -28,11 +28,11 @@ export default {
return { return {
words: [], words: [],
letters: [], letters: [],
number: 10, number: 100,
userText: "", userText: "",
activeIndex: 0, activeIndex: 0,
isWrong: false, isWrong: false,
timer: 10, timer: 60,
timerRunning: false, timerRunning: false,
typingSpeed: "", typingSpeed: "",
} }

View File

@ -20,7 +20,7 @@ const routes = [
] ]
const router = new VueRouter({ const router = new VueRouter({
mode: 'history', mode: 'hash',
base: process.env.BASE_URL, base: process.env.BASE_URL,
routes routes
}) })