mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 15:26:15 -04:00
refactor(lint): fix lint issues
This commit is contained in:
parent
0078af00a6
commit
6ada9a96cd
2 changed files with 7 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<div class="error-wrapper">
|
<div class="error-wrapper">
|
||||||
<div class="error-description">
|
<div class="error-description">
|
||||||
{{this.error ? this.error.message : 'An error occurred'}}
|
{{ error ? error.message : 'An error occurred' }}
|
||||||
</div>
|
</div>
|
||||||
<v-btn color="primary" depressed @click="$router.go(-1)">
|
<v-btn color="primary" depressed @click="$router.go(-1)">
|
||||||
Back
|
Back
|
||||||
|
|
|
@ -14,7 +14,11 @@ export default {
|
||||||
meta: [
|
meta: [
|
||||||
{charset: 'utf-8'},
|
{charset: 'utf-8'},
|
||||||
{name: 'viewport', content: 'width=device-width, initial-scale=1'},
|
{name: 'viewport', content: 'width=device-width, initial-scale=1'},
|
||||||
{hid: 'description', name: 'description', content: 'Aggregated set of useful tools that every developer may need once in a while.'},
|
{
|
||||||
|
hid: 'description',
|
||||||
|
name: 'description',
|
||||||
|
content: 'Aggregated set of useful tools that every developer may need once in a while.'
|
||||||
|
},
|
||||||
{hid: 'keywords', name: 'keywords', content: ['tools', 'tool', 'it', 'developer', 'web', 'computing']}
|
{hid: 'keywords', name: 'keywords', content: ['tools', 'tool', 'it', 'developer', 'web', 'computing']}
|
||||||
],
|
],
|
||||||
link: [{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}]
|
link: [{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue