Commit code with double quotes instead of single quotes

This commit is contained in:
Dmitry Yankowski
2020-02-24 21:06:23 -05:00
parent 3bd7c00038
commit 48100ead55
74 changed files with 3184 additions and 3184 deletions

View File

@@ -5,11 +5,11 @@
<h3>{{ error.message }}</h3>
<p>
<nuxt-link to="/">
<button>{{ $t('go_home') }}</button>
<button>{{ $t("go_home") }}</button>
</nuxt-link>
</p>
<p>
<a href @click.prevent="reloadApplication">{{ $t('reload') }}</a>
<a href @click.prevent="reloadApplication">{{ $t("reload") }}</a>
</p>
</div>
</template>
@@ -31,18 +31,18 @@
<script>
export default {
props: ['error'],
props: ["error"],
methods: {
reloadApplication() {
this.$router.push('/', () => window.location.reload())
this.$router.push("/", () => window.location.reload())
},
},
head() {
return {
bodyAttrs: {
class: 'sticky-footer',
class: "sticky-footer",
},
}
},