refactor(footer)!: rename Footer to AppFooter

Vue.js components should have multi-word names.
This commit is contained in:
2026-08-08 16:07:12 +02:00
parent 6d19f9da11
commit 10c3571e8f
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ limitations under the License.
<script setup>
import { LANGUAGE_PATH } from './config/featureSettings.js';
import Footer from './features/footer/components/Footer.vue';
import AppFooter from './features/footer/components/AppFooter.vue';
import AppNavbar from './features/nav/components/AppNavbar.vue';
import { useSettings } from './features/settings/composables/useSettings.js';
import { setLocale } from './i18n';
@@ -64,7 +64,7 @@ onMounted(() => {
<router-view class="main-content" />
<Footer />
<AppFooter />
</div>
</template>