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
Vue-based typing speed calculator.
Vue-based typing speed calculator. Beta version 4eva.
## Project setup
```
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/).
Accessible [over here](http://dactylo.theo-lem.org/)

View File

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

View File

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