[web] Reorder components and imports

This commit is contained in:
Alain Nussbaumer 2024-02-28 13:58:04 +01:00
parent e7ae478e9b
commit 84f209b520
5 changed files with 5 additions and 5 deletions

View File

@ -72,9 +72,9 @@
<script>
import * as types from '@/store/mutation_types'
import { GroupedList, byName, byYear } from '@/lib/GroupedList'
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import ControlDropdown from '@/components/ControlDropdown.vue'
import { GroupedList, byName, byYear } from '@/lib/GroupedList'
import ListAlbums from '@/components/ListAlbums.vue'
import ModalDialogArtist from '@/components/ModalDialogArtist.vue'
import webapi from '@/webapi'

View File

@ -20,8 +20,8 @@
</template>
<script>
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import { GroupedList, byName } from '@/lib/GroupedList'
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import IndexButtonList from '@/components/IndexButtonList.vue'
import ListAlbums from '@/components/ListAlbums.vue'
import TabsAudiobooks from '@/components/TabsAudiobooks.vue'

View File

@ -21,8 +21,8 @@
</template>
<script>
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import { GroupedList, byName } from '@/lib/GroupedList'
import ContentWithHeading from '@/templates/ContentWithHeading.vue'
import IndexButtonList from '@/components/IndexButtonList.vue'
import ListArtists from '@/components/ListArtists.vue'
import TabsAudiobooks from '@/components/TabsAudiobooks.vue'

View File

@ -43,7 +43,7 @@ const dataObject = {
export default {
name: 'PageMusicRecentlyAdded',
components: { ContentWithHeading, TabsMusic, ListAlbums },
components: { ContentWithHeading, ListAlbums, TabsMusic },
beforeRouteEnter(to, from, next) {
dataObject.load(to).then((response) => {

View File

@ -36,7 +36,7 @@ const dataObject = {
export default {
name: 'PageMusicRecentlyPlayed',
components: { ContentWithHeading, TabsMusic, ListTracks },
components: { ContentWithHeading, ListTracks, TabsMusic },
beforeRouteEnter(to, from, next) {
dataObject.load(to).then((response) => {