Kevin Peters

Results 66 issues of Kevin Peters

https://konpa.github.io/devicon/

Use a scss variable which can be used for the padding bottom on mobile because of the menu bar. This also creates consistency.

enhancement

After adding tests with `jest` and `vue-jest` integrate the CI setup with [coveralls](https://coveralls.io/) to secure a good testing coverage.

enhancement

To validate everything integrate Travis CI to check builds

enhancement

In the project view add a more extended description, preview images and links to packages (think of which links to be included). Right now it looks kinda empty... ![image of...

enhancement

**Issue Summary**: In the [auth.module.js](https://github.com/gothinkster/vue-realworld-example-app/blob/master/src/store/auth.module.js#L28-L39) here you have got some code like: ```js [LOGIN](context, credentials) { return new Promise(resolve => { ApiService.post("users/login", { user: credentials }) .then(({ data }) =>...

type:enhancement
difficulty:medium

**Issue Summary**: In the [auth.module.js](https://github.com/gothinkster/vue-realworld-example-app/blob/master/src/store/auth.module.js#L56-L69) here you have got some code like: ```js [CHECK_AUTH](context) { if (JwtService.getToken()) { ApiService.setHeader(); ApiService.get("user") .then(({ data }) => { context.commit(SET_AUTH, data.user); }) .catch(({ response...

type:enhancement
difficulty:medium

**Issue Summary**: In the [auth.module.js](https://github.com/gothinkster/vue-realworld-example-app/blob/master/src/store/auth.module.js#L70-L86) here you have got some code like: ```js [UPDATE_USER](context, payload) { const { email, username, password, image, bio } = payload; const user = {...

type:enhancement
difficulty:medium

**Issue Summary**: In the [auth.module.js](https://github.com/gothinkster/vue-realworld-example-app/blob/master/src/store/auth.module.js#L43-L55) here you have got some code like: ```js [REGISTER](context, credentials) { return new Promise((resolve, reject) => { ApiService.post("users", { user: credentials }) .then(({ data })...

type:enhancement
difficulty:medium

```html ``` Ideally, `{ name: 'home-tag', params: { tag: name } }` should be a computed property and then used like: ```html ``` Related resources: - https://vuejs.org/v2/guide/computed.html

type:enhancement
good first issue
difficulty:easy