refactor(gui): linting

Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
Pranav C
2021-07-19 16:30:37 +05:30
parent f9508c2d44
commit fa00be39b8
303 changed files with 34924 additions and 31761 deletions

View File

@@ -1,52 +1,55 @@
<template>
<section class="section container">
<div class="box">
<h3 class="title is-3">Password reset is invalid</h3>
<router-link to="/user/password/reset/form">Ask for a new password reset</router-link>
<h3 class="title is-3">
Password reset is invalid
</h3>
<router-link to="/user/password/reset/form">
Ask for a new password reset
</router-link>
</div>
<v-row >
<v-alert type="warning" dismissible v-model="alert">
<h1 class="title is-2">Password reset is invalid</h1>
<v-row>
<v-alert v-model="alert" type="warning" dismissible>
<h1 class="title is-2">
Password reset is invalid
</h1>
</v-alert>
<router-link to="/user/password/reset/form">Ask for a new password reset</router-link>
<router-link to="/user/password/reset/form">
Ask for a new password reset
</router-link>
</v-row>
</section>
</template>
<script>
export default {
data() {
return {}
},
computed: {},
methods: {},
beforeCreated() {
},
created() {
},
mounted() {
},
beforeDestroy() {
},
destroy() {
},
validate({params}) {
return true
},
head() {
return {}
},
props: {},
watch: {},
directives: {},
components: {}
export default {
directives: {},
components: {},
validate ({ params }) {
return true
},
props: {},
data () {
return {}
},
head () {
return {}
},
computed: {},
watch: {},
created () {
},
mounted () {
},
beforeDestroy () {
},
methods: {},
beforeCreated () {
},
destroy () {
}
}
</script>
<style scoped>