Fix linting errors

This commit is contained in:
Kay Thomas
2022-05-26 17:08:00 -07:00
parent 625ce328dd
commit 4ab595f3a1
14 changed files with 33 additions and 29 deletions

View File

@@ -24,7 +24,7 @@
v-model="changePasswordDialog" v-model="changePasswordDialog"
max-width="600px" max-width="600px"
> >
<template v-slot:activator="{ on, attrs }"> <template #activator="{ on, attrs }">
<v-btn <v-btn
class="my-3" class="my-3"
v-bind="attrs" v-bind="attrs"
@@ -89,7 +89,7 @@
> >
{{ snackbarText }} {{ snackbarText }}
<template v-slot:action="{ attrs }"> <template #action="{ attrs }">
<v-btn <v-btn
text text
v-bind="attrs" v-bind="attrs"

View File

@@ -12,7 +12,7 @@
v-model="registerUserDialog" v-model="registerUserDialog"
max-width="600px" max-width="600px"
> >
<template v-slot:activator="{ on, attrs }"> <template #activator="{ on, attrs }">
<v-btn <v-btn
v-bind="attrs" v-bind="attrs"
v-on="on" v-on="on"
@@ -139,7 +139,7 @@
> >
{{ snackbarText }} {{ snackbarText }}
<template v-slot:action="{ attrs }"> <template #action="{ attrs }">
<v-btn <v-btn
text text
v-bind="attrs" v-bind="attrs"

View File

@@ -63,7 +63,7 @@
</v-list-item> </v-list-item>
</v-list-item-group> </v-list-item-group>
</v-list> </v-list>
<template v-slot:append> <template #append>
<v-btn <v-btn
block block
href="https://github.com/kaythomas0/noisedash" href="https://github.com/kaythomas0/noisedash"

View File

@@ -50,7 +50,7 @@
> >
{{ snackbarText }} {{ snackbarText }}
<template v-slot:action="{ attrs }"> <template #action="{ attrs }">
<v-btn <v-btn
text text
v-bind="attrs" v-bind="attrs"

View File

@@ -73,7 +73,7 @@
v-model="profileDialog" v-model="profileDialog"
max-width="600px" max-width="600px"
> >
<template v-slot:activator="{ on, attrs }"> <template #activator="{ on, attrs }">
<v-btn <v-btn
v-bind="attrs" v-bind="attrs"
class="mx-3 my-3" class="mx-3 my-3"
@@ -127,7 +127,7 @@
v-model="profileMoreDialog" v-model="profileMoreDialog"
max-width="600px" max-width="600px"
> >
<template v-slot:activator="{ on, attrs }"> <template #activator="{ on, attrs }">
<v-btn <v-btn
v-bind="attrs" v-bind="attrs"
class="mx-3 my-3" class="mx-3 my-3"
@@ -686,7 +686,7 @@
v-model="addSampleDialog" v-model="addSampleDialog"
max-width="600px" max-width="600px"
> >
<template v-slot:activator="{ on, attrs }"> <template #activator="{ on, attrs }">
<v-btn <v-btn
v-bind="attrs" v-bind="attrs"
class="mx-3 my-3 mb-5" class="mx-3 my-3 mb-5"
@@ -746,7 +746,7 @@
v-model="uploadSampleDialog" v-model="uploadSampleDialog"
max-width="600px" max-width="600px"
> >
<template v-slot:activator="{ on, attrs }"> <template #activator="{ on, attrs }">
<v-btn <v-btn
v-bind="attrs" v-bind="attrs"
class="mx-3 my-3 mb-5" class="mx-3 my-3 mb-5"
@@ -810,7 +810,7 @@
v-model="editSampleDialog" v-model="editSampleDialog"
max-width="600px" max-width="600px"
> >
<template v-slot:activator="{ on, attrs }"> <template #activator="{ on, attrs }">
<v-btn <v-btn
v-bind="attrs" v-bind="attrs"
class="mx-3 my-3 mb-5" class="mx-3 my-3 mb-5"
@@ -926,7 +926,7 @@
> >
{{ infoSnackbarText }} {{ infoSnackbarText }}
<template v-slot:action="{ attrs }"> <template #action="{ attrs }">
<v-btn <v-btn
text text
v-bind="attrs" v-bind="attrs"
@@ -944,7 +944,7 @@
> >
{{ errorSnackbarText }} {{ errorSnackbarText }}
<template v-slot:action="{ attrs }"> <template #action="{ attrs }">
<v-btn <v-btn
text text
v-bind="attrs" v-bind="attrs"

View File

@@ -1,5 +1,5 @@
export default { export default {
name: 'Admin', name: 'Account',
data: () => ({ data: () => ({
currentUser: {}, currentUser: {},

View File

@@ -1,4 +1,6 @@
export default { export default {
name: 'Login',
data: () => ({ data: () => ({
valid: false, valid: false,
username: '', username: '',

View File

@@ -1,4 +1,6 @@
export default { export default {
name: 'Register',
data: () => ({ data: () => ({
valid: false, valid: false,
name: '', name: '',

View File

@@ -1,15 +1,15 @@
<template> <template>
<Account /> <AccountPage />
</template> </template>
<script> <script>
import Account from '../components/Account' import AccountPage from '../components/AccountPage'
export default { export default {
name: 'AccountView', name: 'AccountView',
components: { components: {
Account AccountPage
} }
} }
</script> </script>

View File

@@ -1,15 +1,15 @@
<template> <template>
<Admin /> <AdminPage />
</template> </template>
<script> <script>
import Admin from '../components/Admin' import AdminPage from '../components/AdminPage'
export default { export default {
name: 'AdminView', name: 'AdminView',
components: { components: {
Admin AdminPage
} }
} }
</script> </script>

View File

@@ -1,15 +1,15 @@
<template> <template>
<Noise /> <NoisePage />
</template> </template>
<script> <script>
import Noise from '../components/Noise' import NoisePage from '../components/NoisePage'
export default { export default {
name: 'HomeView', name: 'HomeView',
components: { components: {
Noise NoisePage
} }
} }
</script> </script>

View File

@@ -1,15 +1,15 @@
<template> <template>
<Login /> <LoginPage />
</template> </template>
<script> <script>
import Login from '../components/Login' import LoginPage from '../components/LoginPage'
export default { export default {
name: 'LoginView', name: 'LoginView',
components: { components: {
Login LoginPage
} }
} }
</script> </script>

View File

@@ -1,15 +1,15 @@
<template> <template>
<Register /> <RegisterPage />
</template> </template>
<script> <script>
import Register from '../components/Register' import RegisterPage from '../components/RegisterPage'
export default { export default {
name: 'RegisterView', name: 'RegisterView',
components: { components: {
Register RegisterPage
} }
} }
</script> </script>