Skip to content

Commit

Permalink
add language component to App.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
tanyaka committed Jul 18, 2024
1 parent d6199ec commit bceb99c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<template>
<content>
<LanguageSection />
<hr>
<AuthTokenSection />
<hr>
<WebDavUrl />
Expand All @@ -30,11 +32,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
import AuthTokenSection from './components/security/AuthTokenSection.vue'
import WebDavUrl from './components/files/WebDavUrl.vue'
import Software from './components/help/Software.vue'
import LanguageSection from './components/LanguageSection/LanguageSection.vue'
import { defineComponent } from 'vue'

export default defineComponent({
name: 'App',
components: {
LanguageSection,
AuthTokenSection,
WebDavUrl,
Software,
Expand Down

0 comments on commit bceb99c

Please sign in to comment.