summaryrefslogtreecommitdiffstats
path: root/src/components/SettingsSection.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/SettingsSection.vue')
-rw-r--r--src/components/SettingsSection.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/SettingsSection.vue b/src/components/SettingsSection.vue
index f5a8968a..99e2f7c9 100644
--- a/src/components/SettingsSection.vue
+++ b/src/components/SettingsSection.vue
@@ -23,9 +23,9 @@
<template>
<div>
<ul id="address-book-list">
- <address-book v-for="addressbook in addressbooks" :key="addressbook.id" :addressbook="addressbook" />
+ <addressbook v-for="addressbook in addressbooks" :key="addressbook.id" :addressbook="addressbook" />
</ul>
- <add-address-book :addressbooks="addressbooks" />
+ <add-addressbook :addressbooks="addressbooks" />
<import-contacts :addressbooks="addressbooks" class="settings-section" />
<sort-contacts class="settings-section" />
@@ -33,16 +33,16 @@
</template>
<script>
-import addressBook from '../components/Settings/SettingsAddressbook'
-import addAddressBook from '../components/Settings/SettingsNewAddressbook'
+import addressbook from '../components/Settings/SettingsAddressbook'
+import addAddressbook from '../components/Settings/SettingsNewAddressbook'
import importContacts from '../components/Settings/SettingsImportContacts'
import sortContacts from '../components/Settings/SettingsSortContacts'
export default {
name: 'SettingsSection',
components: {
- addressBook,
- addAddressBook,
+ addressbook,
+ addAddressbook,
importContacts,
sortContacts
},