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

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